body {
    background-color: powderblue;
    color: rgb(61, 67, 68);
    background-image: url("../media/tlu_h200.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-position: 1750px 40px;
    background-attachment: fixed;
    cursor: url("rinde.png"), crosshair;
}

section {
    background-color: rgb(160, 195, 200);
    padding: 15px;
    margin: 15px;

}



nav menu a:hover {
    color: #93c5fd;
    cursor: url("rinde.png"), crosshair;
}


nav {
    background-color: aquamarine;
    box-sizing: border-box;   
    width: 300px;
    margin: 20px;
    padding: 20px;
    border: 10px solid black; 
}

a {
    font-family: "Times New Roman", serif;
    color: blueviolet;
}

h2 {
    font-size: 80px;
    color: aqua;
    animation: glow 1s ease-in-out infinite alternate;
}


h1 {
    font-size: 80px;
    color: purple;
    animation: glow 1s ease-in-out infinite alternate;
}

h3 {
    font-size: 80px;
    color: violet;
    animation: glow 1s ease-in-out infinite alternate;
}




t1 {
    margin: 10px;
    font-size: 30px;
    color: black;
    display:flex;
    align-items: flex-start;
    gap: 20px;
    word-wrap: break-word;
    

}

t2 {
    font-size: 50px;
    color: black;
    word-wrap: break-word;
}

t3 {
    font-size: 70px;
    color: black;
    word-wrap: break-word;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px white;
    }
    to {
        text-shadow: 0 0 20px blue;
    }
}


#container {
    display: flex;
    align-items: center;
    gap: 20px;
}


#clockContainer {
    display: flex;
    gap: 10px;        
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 4px;
}


#dateContainer {
    display: flex;
    align-items: center;
    font-size: 22px;
    opacity: 0.85;
}

#button{
    font-size: 1.1em;
    border-radius: 1500px;
    padding: 2px
}

