
            :root body {
                background: url(images/leaves.webp) center;
                background-color: #E7DECD;
            }


            @font-face {
                font-family: 'Gaegu';
                src: url('fonts/Gaegu-Regular.ttf');
                font-weight: 700;
                font-style: normal;
            }

            @font-face {
                font-family: 'Gaegu';
                src: url('fonts/Gaegu-Bold.ttf');
                font-weight: 700;
                font-style: normal;
            }


            @font-face {
                font-family: 'Gaegu';
                src: url('fonts/Gaegu-Light.ttf');
                font-weight: 300;
                font-style: normal;
            }

            body {
                font-family: 'Gaegu', sans-serif;
                margin: 0;
                background-color: #151910;
                background-size: 65px;
                color: #E7DECD;
            }

            * {
                box-sizing: border-box;
            }

            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                max-width: 900px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }

            #container a {
                color: #E7DECD;
                font-weight: bold;
            }

            #header {
                width: 100%;
                background-color: #E7DECD;
                height: 150px;
            }

            #navbar {
                height: 40px;
                background-color: #804E49;
                width: 100%;
                border-radius: 5px;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
            }

            #navbar li a {
                color: #E7DECD;
                font-weight: 800;
                text-decoration: none;
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #241445;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            main {
                background-color: #804E49;
                flex: 1;
                padding: 20px;
                order: 2;
                color: #E7DECD;
                border-radius: 25px;
            }

            footer {
                color: #804E49;
                background-color: #9AC171;
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                border-radius: 15px;
            }

            h1,
            h2,
            h3 {
                color: #E7DECD;
            }

            h1 {
                font-size: 25px;
            }


            .box {
                background-color: #9AC171;
                border: 1px solid #E7DECD;
                padding: 10px;
            }

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #9AC171;
                color: #804E49;
                border-radius: 5px
            }


            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @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;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
                
                
            }


#glenplayer02 {
position:center;
left:5px;
display:flex;
z-index:99;
}
 
#glenplayer02 > div {
align-self:center;
}
 
.music-controls {
user-select:none;
-webkit-user-select:none;
width:13px;
font-size:18px;
}
 
.playy, .pausee {color:#9AC171; text-shadow: -1px 0 #1c2315, 0 1px #1c2315, 1px 0 #1c2315, 0 -1px #1c2315, 0 0;} /* color of play & pause buttons */
 
.pausee {display:none;}
 
.sonata {
margin-left:10px;
font-size:24px;
color:#9AC171;
font-weight: bold;
text-shadow: -1px 0 #413b45, 0 1px #413b45, 1px 0 #413b45, 0 -1px #413b45, 0 0; /* color of music note symbol */
}
 
.labeltext {
position: relative;
bottom:10px;
font-family: 'Gauge';
font-size:14px;
color:#9AC171;
font-weight: bold;
text-shadow: -1px 0 #1c2315, 0 1px #1c2315, 1px 0 #1c2315, 0 -1px #1c2315, 0 0;/* color of song title */
}