/* Dropdown Button */
.dropbtn {

background-color: transparent;
border: none;
box-shadow: none; 
inset: 0;
z-index: 2;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: transparent;
z-index: 1;
min-width: 151px;
text-align-last: left;
}

/* Links inside the dropdown */
.dropdown-content a {
color: #6461c2;
padding: 12px 16px;
text-decoration: none;
display: block;
background-image: url('img/empty_cloud.png');
background-size: contain;
background-repeat: no-repeat;
margin: 3px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-image: url('img/empty_cloud_green.png');}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: transparent;}

.dropdown-content a:focus {background-image: url('img/empty_cloud_green.png');}

/* Show the dropdown menu on hover */
.dropdown:focus .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:focus .dropbtn {background-color: transparent;}
    /* user styles */

    /* styles are what change the color and sizes of stuff on your site. */

    /* these are variables that are being used in the code
these tended to confuse some people, so I only kept 
the images as variables */

    :root {
        --header-image: url('https://i.imgur.com/sLa4Ib5.gif');
        --body-bg-image: url('https://i.imgur.com/7rnyJbp.gif');

        /* colors */
        --content: #634b7d;
    }

    /* if you have the URL of a font, you can set it below */
    /* feel free to delete this if it's not your vibe */

    /* this seems like a lot for just one font and I would have to agree 
but I wanted to include an example of how to include a custom font.
If you download a font file you can upload it onto your Neocities
and then link it! Many fonts have separate files for each style
(bold, italic, etc. T_T) which is why there are so many!

*/

     @font-face {
        font-family: Daydream;
        src: url('https://pixalina.neocities.org/fonts/Daydream.ttf');
    }
    
     @font-face {
        font-family: Rainy;
        src: url(https://pixalina.neocities.org/fonts/rainyhearts.ttf);
    }
     
     @font-face {
        font-family: Cursive;
        src: url('https://pixalina.neocities.org/fonts/Cursive.ttf');
    }
     
     @font-face {
        font-family: vcr;
        src: url('https://pixalina.neocities.org/fonts/vcr.woff');
    }
    
    @font-face {
        font-family: Dot;
        src: url('https://pixalina.neocities.org/fonts/DotGothic.ttf');
    }
    
    @font-face {
        font-family: Yomogi;
        src: url('https://pixalina.neocities.org/fonts/Yomogi.ttf');
    }
    
    @font-face {
        font-family: Nunito;
        src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
    }

    @font-face {
        font-family: Nunito;
        src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
        font-weight: bold;
    }

    @font-face {
        font-family: Nunito;
        src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
        font-style: italic;
    }

    @font-face {
        font-family: Nunito;
        src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
        font-style: italic;
        font-weight: bold;
    }
    
    @font-face {
        font-family: Comic Sans;
        src: url('https://pixalina.neocities.org/fonts/ComicSans.ttf');
    }

    @font-face {
        font-family: Comic Sans;
        src: url('https://pixalina.neocities.org/fonts/ComicSans-bold.ttf');
        font-weight: bold;
    }

    @font-face {
        font-family: Comic Sans;
        src: url('https://pixalina.neocities.org/fonts/ComicSans-italic.ttf');
        font-style: italic;
    }

    @font-face {
        font-family: Comic Sans;
        src: url('https://pixalina.neocities.org/fonts/ComicSans-bolditalicco.ttf');
        font-style: italic;
        font-weight: bold;
    }
    
    @font-face {
        font-family: Courier;
        src: url('https://pixalina.neocities.org/fonts/Courier.ttf');
    }
    
    @font-face {
        font-family: Minecraftia;
        src: url('https://pixalina.neocities.org/fonts/Minecraftia.ttf');
    }
    
    @font-face {
        font-family: Adelia;
        src: url('https://pixalina.neocities.org/fonts/Adelia.otf');
    }

    @font-face {
        font-family: "morningtea";
        src: url(https://doqmeat.com/fonts/MorningTea.ttf);
    }

    @font-face {
        font-family: "spirit";
        src: url(https://doqmeat.com/fonts/Spirit.ttf);
    }

    body {
        font-family: "Comic Sans MS", "Comic Sans", cursive;
        margin: 0;
        background-color: #08031A;
        /* you can delete the line below if you'd prefer to not use an image */
        background-size: 100px;
        color: #634b7d;
        background-image: var(--body-bg-image);
        cursor: url('https://od.lk/s/ODFfNzQ2MzY0NThf/quindim_cursor%20%281%29.cur'), url('https://od.lk/s/ODFfNzQ2MzM4MzZplaf/quindim_cursor.gif') 0 0, default;
    }

    * {
        box-sizing: border-box;
    }

    /* below this line is CSS for the layout */

    /* this is a CSS comment
to uncomment a line of CSS, remove the * and the /
before and after the text */


    /* 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 */
    }

    /* the area below is for all links on your page
EXCEPT for the navigation */
    #container a {
        color: #6461c2;
        font-weight: bold;
        text-decoration-style: wavy;
        /* if you want to remove the underline
you can add a line below here that says:
text-decoration:none; */
    }
    #container a:hover {
        color: #2ba9b4;
        font-weight: bold;
        text-decoration: italic;
        text-decoration-style: wavy;
        cursor: url('https://od.lk/s/ODFfNzQ2MzQ4MjZf/quindim_cursor_hover.cur'), url('https://od.lk/s/ODFfNzQ2MzQ4Mjlf/quindim_cursor_hover.gif') 0 0, default;
        /* if you want to remove the underline
you can add a line below here that says:
text-decoration:none; */
    }
    #header {
        width: 100%;
        /* header color here! */
        height: 118px;
        /* this is only for a background image! */
        /* if you want to put images IN the header, 
you can add them directly to the <div id="header"></div> element! */
        background-image: var(--header-image);
        background-repeat: no-repeat;
        background-size: 100%;
    }


    /* navigation section!! */
    #navbar {
        height: 40px;
        text-align-last: justify;
        /* navbar color */
        width: 100%;
        border-radius: 0 0 25px 25px;
        position: sticky;
        top: 0;
        z-index: 99;
        
        
        
    }

    #navbar ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

    #navbar li {
        padding-top: 10px;
        font-size: 20px;
        font-family: 'vcr';
    }

    /* navigation links*/
    #navbar li a {
        color: #c45d9f;
        /* navbar text color */
        font-weight: 800;
        text-decoration: none;
        /* this removes the underline */
    }

    /* navigation link when a link is hovered over */
    #navbar li a:hover {
        color: #2ba9b4;
        text-decoration: underline;
        background-image: url('https://i.imgur.com/4G6UVU1.gif');
        
    }

    #flex {
        display: flex;
    }

    /* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
    aside {
        background-color: #9cdf73;
        width: 200px;
        padding: 15px;
        font-size: smaller;
        border-radius: 25px 0 0 25px;
        border: 1px solid #f0f6e8; box-shadow: 2px 2px #634b7d;
        /* this makes the sidebar text slightly smaller */
    }


    /* this is the color of the main content area,
between the sidebars! */
    main {
        background-color: #FFFFE0;
        flex: 1;
        order: 2;
        border-radius: 0 25px 25px 0;
        padding: 5px 30px 5px 30px;
        border: 1px solid #f0f6e8; 
        box-shadow: 2px 2px #634b7d;
    }

    /* what's this "order" stuff about??
allow me to explain!
if you're using both sidebars, the "order" value
tells the CSS the order in which to display them.
left sidebar is 1, content is 2, and right sidebar is 3! */

    */ #leftSidebar {
        order: 1;
    }

    #rightSidebar {
        order: 3;
    }

    footer {
        /* background color for footer */
        width: 100%;
        height: 40px;
        padding: 10px;
        text-align: center;
        border-radius: 25px 25px 0 0;
        /* this centers the footer text */
    }

    h2,
    h3 {
        font-family: 'Daydream';
        color: #9cdf73;
        background-color: #6461c2;
        text-align: center;
        border-radius: 25px; padding: 5px; border: 1px solid #f0f6e8; box-shadow: 2px 2px #634b7d;
        box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
        font-size: 10pt;
        background-image: url('https://i.imgur.com/4G6UVU1.gif');
        text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
        
    }

    h1 {
        font-family: 'Yomogi';
        font-size: 25px;
        color: #634b7d;
        background-color: #e39aac;
        text-align: center;
        text-transform: uppercase;
    }

    h4 {
        font-family: morningtea;
        font-size: 2em;
        color: #634b7d;
        margin-bottom: 0px;
        padding-bottom: 0px;
        padding-left: 5px;
        text-align: left;
    }

    strong {
        /* this styles bold text */
        color: #634b7d;
    }

#bordinha {
border-width:11px;
border-style:solid;
border-image: url("https://i.imgur.com/QxbVOzn.png") 15 fill round;
height: auto;
width: 500px;
padding: 25px;
overflow: none;
font-family: 'Rainy';
font-size: 15pt;
text-align: justify;

}

    /* this is just a cool box, it's the darker colored one */
    .box {
        background-color: #FFFFE0;
        border: 1px solid #c45d9f;  
        height: 100px;
        overflow: auto;
        padding: 0 10px 0 10px;
        border-radius: 25px 0 0 25px;
        box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
        font-family: 'Yomogi';
        
        
    }
    
    
    
    .box::-webkit-scrollbar {
width: 16px;
height: 16px;
}

.box::-webkit-scrollbar-track {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAAFElEQVQIW2M4fPz0////GYAYyAIASnoKpV3w4kgAAAAASUVORK5CYII=");
image-rendering: pixelated;
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
}

.box::-webkit-scrollbar-track:active {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAAEElEQVQIW2No6+pjgAAgCwAWogM9VKrgGQAAAABJRU5ErkJggg==");
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
}

.box::-webkit-scrollbar-thumb {
border-top: 1px solid #6461c2;
border-left: 1px solid #6461c2;
border-right: 1px solid black;
border-bottom: 1px solid black;
box-shadow: inset 1px 1px 0 0 white, inset -1px -1px 0 0 #531D81;
width: 16px;
height: 16px;
background-color: #7F7CD5;
z-index: 1;
}

.box::-webkit-scrollbar-corner {
background-color: #7F7CD5;
}

.box::-webkit-resizer {
width: 16px;
height: 16px;
background-color: #7F7CD5;
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAN0lEQVR4Ae3MgQUAMBRDwU5fFF05lb/CARTBw2Ulof0DxPtcwp3hNuEYnjbcEW4TjuFpwx3h9gMWGgZ2Y/PT2gAAAABJRU5ErkJggg==");
background-position: bottom right;
background-repeat: no-repeat;
image-rendering: pixelated;
}

.box::-webkit-scrollbar-button, .box::-webkit-scrollbar-button {
border-top: 1px solid #6461c2;
border-left: 1px solid #6461c2;
border-right: 1px solid black;
border-bottom: 1px solid black;
box-shadow: inset 1px 1px 0 0 white, inset -1px -1px 0 0 #531D81;
display: block;
width: 16px;
height: 16px;
background-color: #7F7CD5;
image-rendering: pixelated;
background-repeat: no-repeat;
background-position: center center;
}

.box::-webkit-scrollbar-button:active, .box::-webkit-scrollbar-button:active {
background-position: 2px 2px;
}

.box::-webkit-scrollbar-button:horizontal:decrement, .box::-webkit-scrollbar-button:horizontal:decrement {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAQAAAD8fJRsAAAAHklEQVQY02NgoBT8xyX8H5fwf1zCpOjAYwceV1EEAAO2D/HsQ4vsAAAAAElFTkSuQmCC");
}

.box::-webkit-scrollbar-button:horizontal:increment, .box::-webkit-scrollbar-button:horizontal:increment {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAQAAAD8fJRsAAAAHUlEQVQY02NgIB/8xy3xH7fEf9wS/0nUQZqrKAYAK44P8ZRmzLQAAAAASUVORK5CYII=");
}

.box::-webkit-scrollbar-button:vertical:decrement, .box::-webkit-scrollbar-button:vertical:decrement {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGklEQVR4AWMYxuA/SYphmETFhDX9x4mHGQAAcL4P8dQiMq8AAAAASUVORK5CYII=");
}

.box::-webkit-scrollbar-button:vertical:increment, .box::-webkit-scrollbar-button:vertical:increment {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAQAAAD8fJRsAAAAF0lEQVQY02NgoBf4jwJxSOHQhcNAOgMAWWAP8Rv2U3UAAAAASUVORK5CYII=");
}

.box::-webkit-scrollbar-button:horizontal:increment:start, .box::-webkit-scrollbar-button:horizontal:increment:start {
display: none;
}

.box::-webkit-scrollbar-button:horizontal:decrement:end, .box::-webkit-scrollbar-button:horizontal:decrement:end {
display: none;
}

.box::-webkit-scrollbar-button:vertical:increment:start, .box::-webkit-scrollbar-button:vertical:increment:start {
display: none;
}

.box::-webkit-scrollbar-button:vertical:decrement:end, .box::-webkit-scrollbar-button:vertical:decrement:end {
display: none;
}

::-webkit-scrollbar-button:active, ::-webkit-scrollbar-button:active {
border-top: 1px solid #743EA3;
border-left: 1px solid #743EA3;
border-bottom: 1px solid #743EA3;
border-right: 1px solid #743EA3;
box-shadow: none;
}

/* main content grid */

#mainContent  {
    display: grid;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: -10px;
    grid-gap: 30px;
    max-width: 650px;
    grid-template:
    "pixelart dollz piclog"
    "currently currently status"
    "botao2 botao2 botao2"
    / 1fr 1fr 1fr;
}

#latest-pixel-art {
    grid-area: pixelart;
    background-image: url('img/box6.png');
    background-position-x: center;
    text-align: center;
    padding-top: 0px;
    font-family: spirit;
    font-size: 1.5em;
    color: #7232B3;
    box-shadow: 1px 1px 3px #000;
    min-width: 0;
    height: 250px;
}

#latest-pixel-art:hover {
    transform: rotate(5deg);
}

#latest-dollz {
    grid-area: dollz;
    background-image: url('img/box7.png');
    background-position-x: center;
    text-align: center;
    padding-top: 0px;
    font-family: spirit;
    font-size: 1.5em;
    color: #7232B3;
    box-shadow: 1px 1px 3px #000;
    min-width: 0;
    height: 250px;
}

#latest-dollz:hover {
    transform: rotate(5deg);
}

#latest-piclog {
    grid-area: piclog;
    background-image: url('img/box5.png');
    background-position-x: center;
    text-align: center;
    padding-top: 0px;
    font-family: spirit;
    font-size: 1.5em;
    color: #7232B3;
    box-shadow: 1px 1px 3px #000;
    min-width: 0;
    height: 250px;
}

#latest-piclog:hover {
    transform: rotate(5deg);
}

#currently {
    grid-area: currently;
    text-align: center;
}



#currentlyTop {
    background-image: url(img/currentlyTop.gif);
    background-repeat: no-repeat;
    background-size: contain;
    width: 400px;
    height: 38px;
    padding: 0;
    margin-top: -35px;
    float: left;
}

#currentlyBottom {
    background-image: url(img/currentlyBottom.gif);
    background-repeat: no-repeat;
    width: 400px;
    height: 13px;
    padding: 0;
    float: left;
}
   #currentlyText {
    font-family: 'Courier';
    font-size: 1em;
    height: 200px;
    background-color: #fff;
    border-left: #5f4725 solid 1px;
    border-right: #5f4725 solid 1px;
    width: 400px;
    height: auto;
    overflow: hidden;
    padding: 10px 15px 10px 15px;
    float: left;
    text-align: left;
   }   

#currentlyText img {
   vertical-align: center;
   }


#status {
    grid-area: status;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

#botao {
    grid-area: botao2;
    display: flex;
    justify-content: center;
    align-items: center;
}

#botaoTexto {
    height: 3.5em;
    border-radius: 20px;
    background-image: url('https://hillhouse.neocities.org/materials/backgrounds/images/hearts-transparent.png');
    background-position: center;
    text-align: center;
    vertical-align: center;
    font-family: 'Rainy';
    font-size: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #f9dbd3;
    border-radius: 25px; 
    color: #634b7d; 
    padding: 5px;  
    box-shadow: 2px 2px #634b7d; 
    border: 1px solid #6461c2;
    min-width: 0;
    flex-shrink: 1; 
    width: 70%;
}


/*bottom content grid*/







#pet {
    grid-area: pet;
    margin: 5px;
}

#stats {
    grid-area: stats;
}


    /* CSS for extras */

    #topBar {
        width: 100%;
        height: 30px;
        padding: 10px;
        font-size: smaller;
        background-color: #13092D;
    }
        
    #boasvindas img {
            float: left; 
            width: 60px;
        }


    /* BELOW THIS POINT IS MEDIA QUERY */

    /* 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: 820px) {
        #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;
            width: 95%;
            margin-left: 10px;
            margin-right: 10px;
            margin-bottom: 10px;
            margin-top: -10px;
            border-radius: 25px 25px 25px 25px;
        }

        aside {
            order: 2;
            width: 95%;
            margin-left: 10px;
            margin-right: 10px;
            margin-bottom: 10px;
            border-radius: 25px 25px 25px 25px;
        }

        main img{
            max-width: 100%;
        }
        
        #boasvindas {
            text-align: center;
        }
        
        #boasvindas img {
            display: none;
        }

        footer {
            width: 95%;
        }

        footer img{
            max-width: 95%;
        }

        #bordinha {
            max-width: 100%;
        }

        #glenplayer02 {
            display: none;
        }

        .music-controls, .playy, .pausee, .sonata {
            display: none;
        }

        #navbar {
            width: 100%;
            height: auto;
            text-align: center;
            text-align-last: center;
            position: sticky;
        }

        #navbar img {
            height: 40px;
        }

        #header {
            height: 68px;
            margin-top: 5px;
            background-size: 516px 68px;
            background-position: center;
        }

        #navbar ul {
            flex-wrap: wrap;
            justify-content: space-around;
        }
        
        

        
    }

    @media only screen and (max-width: 650px) {
        #mainContent  {
                    display: grid;
                    padding-top: 20px;
                    grid-gap: 5px;
                    max-width: 700px;
                    grid-template:
                    "pixelart dollz piclog"
                    "currently currently currently"
                    "status status status"
                    "botao2 botao2 botao2"
                    / 1fr 1fr 1fr;
                }
        #latest-pixel-art {
    height: 200px;
    font-size: 1em;
}

#latest-dollz {
    height: 200px;
    font-size: 1em;
}

#latest-piclog {
    height: 200px;
    font-size: 1em;
}

#botao {
  margin-top: 20px;
}

.fita {
  display: none;
}
        
        
    }
    
        @media only screen and (max-width: 500px) {


        #currentlyTop {
            width: 100%;
            background-size: cover;
            border-radius: 0 15px 0 0;
        }
        
        #currentlyBottom {
            width: 100%;
            background-size: cover;
            border-radius: 0 0 15px 15px;
        }
        
        #currentlyText {
            width: 100%;
           }   

        #botaoTexto {
            font-size: 1em;
                }
       
               #latest-pixel-art {
    height: 150px;
}

#latest-dollz {
    height: 150px;
}

#latest-piclog {
    height: 150px;
}

        
        
    }
    
    
    @media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
    

    button {-webkit-font-smoothing:none;
        font-family:"Pixelated MS Sans Serif",Arial;
        font-size:14px}
        
        
        button,input[type=reset],input[type=submit]{border:none;
        border-radius:0;
        box-sizing:border-box;
        color:transparent;
        min-height:23px;
        min-width:75px;
        padding:0 12px;
        text-shadow:0 0 #222}
        
        button,input[type=reset],input[type=submit]{background:silver;
        box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf}
        
        button:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey;
        text-shadow:1px 1px #222}
        button:focus,input[type=reset]:focus,input[type=submit]:focus{outline:1px dotted #000;outline-offset:-4px}button::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0}:disabled,:disabled+label,input[readonly],input[readonly]+label{color:grey}:disabled+label,button:disabled,input[type=reset]:disabled,input[type=submit]:disabled{text-shadow:1px 1px 0 #fff}.window{background:silver;box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #dfdfdf,inset -2px -2px grey,inset 2px 2px #fff;padding:3px}.title-bar{align-items:center;background:linear-gradient(90deg,navy,#1084d0);display:flex;justify-content:space-between;padding:3px 2px 3px 3px}.title-bar.inactive{background:linear-gradient(90deg,grey,#b5b5b5)}.title-bar-text{color:#fff;font-weight:700;letter-spacing:0;margin-right:24px}.title-bar-controls{display:flex}.title-bar-controls button{display:block;min-height:14px;min-width:16px;padding:0}.title-bar-controls button:active{padding:0}.title-bar-controls button:focus{outline:none}.title-bar-controls button[aria-label=Minimize]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='6' height='2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M0 0h6v2H0z'/%3E%3C/svg%3E");background-position:bottom 3px left 4px;background-repeat:no-repeat}.title-bar-controls button[aria-label=Maximize]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='9' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 0H0v9h9V0zM8 2H1v6h7V2z' fill='%23000'/%3E%3C/svg%3E");background-position:top 2px left 3px;background-repeat:no-repeat}.title-bar-controls button[aria-label=Restore]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M2 0h6v2H2zM7 2h1v4H7zM2 2h1v1H2zM6 5h1v1H6zM0 3h6v2H0zM5 5h1v4H5zM0 5h1v4H0zM1 8h4v1H1z'/%3E%3C/svg%3E");background-position:top 2px left 3px;background-repeat:no-repeat}.title-bar-controls button[aria-label=Help]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='6' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M0 1h2v2H0zM1 0h4v1H1zM4 1h2v2H4zM3 3h2v1H3zM2 4h2v2H2zM2 7h2v2H2z'/%3E%3C/svg%3E");background-position:top 2px left 5px;background-repeat:no-repeat}.title-bar-controls button[aria-label=Close]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0h2v1h1v1h2V1h1V0h2v1H7v1H6v1H5v1h1v1h1v1h1v1H6V6H5V5H3v1H2v1H0V6h1V5h1V4h1V3H2V2H1V1H0V0z' fill='%23000'/%3E%3C/svg%3E");background-position:top 3px left 4px;background-repeat:no-repeat;margin-left:2px}
        
        @font-face {
        font-family: Pixelated MS Sans Serif;
        src: url(https://unpkg.com/98.css@0.1.16/dist/ms_sans_serif.woff);
        }
        @font-face {
        font-family: emoji;
        src: url(https://dl.dropbox.com/s/miph32gnut3atwk/bmstamp.TTF);
        }
        
        /*-------MUSIC PLAYER BY GLENTHEMES-------*/
        #glenplayer02 {
        position:fixed;
        bottom:0;margin-bottom:20px;
        right:0;margin-right:10px;
        z-index:99;
        background-image: url('https://i.imgur.com/v1oh3q9.gif');
        width: 300px;
        height: 249px;
        }
        #glenplayer02 a {text-decoration:none;}
        
        #glenplayer02 > div {
        align-self:center;
        -webkit-align-self:center;
        }
        
        .music-controls {
        user-select:none;
        -webkit-user-select:none;
        text-align: center;
        width:80px;
        color: #000;
        font-family: Arial;
        font-size: 14px;
        margin-top: 35px;
        margin-left: 50px;
        
        }
        
        .playy, .pausee {
        color: #7232B3;
        
        
        }
        
        @keyframes floating {
        0% { transform: translate(0, 0px); }
        50% { transform: translate(0, 7px); }
        100% { transform: translate(0, -0px); }
        } /* color of play & pause buttons */
        
        .pausee {display:none;}
        
        .sonata {
        margin-left:10px;
        width:250px;
        font-size:20px;
        font-family: pokemonred;
        color:#7232B3; /* color of music note symbol */
        }
        
          #statuscafe {
            padding: .5em;
            background-image: url(img/sapopensante.gif);
            background-size: cover;
            background-repeat: no-repeat;
            max-width: 187px;
            height: 231px;
            b
        }
        #statuscafe-username {
            margin-bottom: .5em;
            padding: 12px 5px 0px ;
            font-family: 'Courier';
            font-size: 12px;
            text-align: left;
        }
        #statuscafe-content {
            margin: 0 0 4.5em 0.5em;
            font-family: 'Courier';
            text-align: left;
            overflow: hidden;
        }

        #botao_pixel {
            width: 20%; 
            padding: 20px;
        }

        #botao_pixel:hover {
            cursor: url('https://od.lk/s/ODFfNzQ2MzQ4MjZf/quindim_cursor_hover.cur'), url('https://od.lk/s/ODFfNzQ2MzQ4Mjlf/quindim_cursor_hover.gif') 0 0, default;
        }
