.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
    body {
        background-image: url('papers.co-mg00-cloud-flare-dark-sky-wanna-fly-nature-29-wallpaper.jpg');
        /* https://pixels.com/featured/dark-clouds-audrey-chandler.html */
        /* https://www.aguamaderaibiza.com/sound
           https://www.google.com/search?sca_esv=580393850&sxsrf=AM9HkKmXZHTue7l82ClPl0PZzPDDsJ4eBw:1699429379062&q=dark+grey+clouds+aesthetic&tbm=isch&source=lnms&sa=X&ved=2ahUKEwjlztbj87OCAxWVlokEHY6NCLMQ0pQJegQICxAB&biw=1920&bih=983&dpr=1#imgrc=kktrjTBpst56cM
         */
         /* https://wallpapers.com/wallpapers/dark-grey-aesthetic-a1gao2m2vt2ncb5c.html */
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: unset;
    top: 0;
    left: 0;
    /* width: 200px; Remove fixed width to take up full width */
    transition: width 0.3s;
    display: flex;
    justify-content: center; /* Center items horizontally */
    cursor: pointer;
    padding-top: 0.5%;
    /* z-index: 9999; */
}

    .navbar li {
        display: block;
        padding: 15px;
        text-align: center;
    }

    .navbar li a {
        color: #fff;
        text-decoration: none;
        display: block;
    }

    .navbar li a:hover {
        color: grey;
    }

    .stuff {
        font-size: 22px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .calendar {
        color: white;
        position: fixed;
        top: 10px;
        right: 10px;
    }

    .clock {
        color: white;
        position: fixed;
        top: 40px;
        right: 10px;
    }

    .footer {
        color: white;
        font-size: 20px;
        text-align: center;
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        padding: 10px;
        text-decoration: none;
    }

    footer p , footer a{
        display: inline;
        color: #fff;
        margin: 0 10px;
        text-decoration: none;
    }

    .comp_msg {
        color: white;
        /*Times Entertainment*/
    }

    .nav-link {
    color: #fff;
    text-decoration: none;
    display: block;
}

.content{
    padding-bottom: 1%;
}

h2, p{
    color: #fff;
    padding-left: 5%;
    padding-right: 5%;
}
a, li{
    color: #fff;
    text-decoration: none;
}

a:hover{
    color:grey;
}

ul{
    margin-left: 5%;
    margin-right: 5%;
}
@media (max-width: 500px) {
        .navbar {
            width: 100%; 
        }

        .stuff {
            flex-direction: row;
        }

        .content{
            margin-top: 60px;
        }

        .footer {
            flex-direction: row; 
            justify-content: space-evenly;
            width: 100%;
        }
    }