body {
    /*background-image: url("tartan_background.jpg");*/
    background-color: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    font-family: "Courier New", monospace;
    margin: 0;
    color: black;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px;
}

.profile-pic {
    width: 350px;
    max-width: 90%;
}

.intro-box {
    background: rgba(255,255,255,.85);
    border: 3px solid black;
    padding: 20px;
    max-width: 700px;
    margin: 20px auto;
}

.navbar {
    background: rgba(0,0,0,.85);
    padding: 15px;
    position: sticky;
    top: 0;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.navbar a:hover {
    color: #be0c0c;
}

main {
    background: rgba(255,255,255,.9);
    padding: 30px;
    border-radius: 10px;
}

.visitor-counter {
    background: rgba(255,255,255,.9);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
}

.button {
    background: black;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: .3s;
}
.script{
  background:rgba(39,02,20,78,.9);
}

.button:hover {
    background: #be0c0c;
    transform: translateY(-2px);
}
#clock-wrapper {
    background-color: white;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
}