body {
    background-image: url('https://file.garden/aXKeeLDTlFOQKNIY/playground.jpeg');
    background-size: cover;
    color: #ffffff;
}

* {
    box-sizing: border-box;
}

#container {
    max-width: 1500px;
    max-height: 450px;
    margin: 0 auto;
}

/*Music player*/
#header {
    text-align: center;
}

/*navbar bg*/
#navbar {
    height: 50px;
    background-color: rgba(0, 0, 0, 0.500);
    backdrop-filter: blur(10px);
    width: 100%;
    border-radius: 16px;
}

/*navbar layout*/
#navbar ul {
    display: flex;
    padding-top: 3.5px;
    margin-top: 8px;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

/*navbar links*/
#navbar li a {
    color: rgb(255, 255, 255);
    font-weight: 800;
    text-decoration: none;
}

/*navbar link hover*/
#navbar li a:hover {
    color: rgb(127, 255, 172);
    text-decoration: none;
}

#flex {
    display: flex;
}

/*sidebar colors (both)*/
aside {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    width: 333px;
    height: 610px;
    padding: 20px;
    font-size:   smaller;
    border-radius: 16px;
}

/*Sidebar content*/

#links {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    height: 125px;
    overflow: auto;
}

#links li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

#links li a:hover {
    color: rgb(127, 255, 172);
    text-decoration: none;
}


#updates {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    height: 324px;
    overflow: auto;
}

/*main body colors*/
main {
    background-color: rgba(0, 0, 0, 0.500);
    backdrop-filter: blur(10px);
    flex: 1;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    order: 2;
    border-radius: 16px;
}

#maincontent {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
}

/*order*/
#rightbar {order: 3;}


h1,
h2,
h3 {
    color: rgb(255, 255, 255);
}

h1 {
    font-size: 25px;
}



@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
    main {
        order: 1;
    }

    #leftbar {
        order: 2;
    }

    #rightbar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}