 
  /* 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('container.jpg');
        --body-bg-image: ;

        /* colors */
        --content: #dce3e1;
    }

    /* 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!

*/


    body {
        font-family: 'DMMono';
        font-size: 11pt;
        color: white;
        margin: 0;
        background:
        radial-gradient(circle at 0% 50%, rgba(96, 16, 48, 0) 9px, #b19ea6 10px, rgba(96, 16, 48, 0) 11px) 0px 10px,
        radial-gradient(at 100% 100%,      rgba(96, 16, 48, 0) 9px, #b19ea6 10px, rgba(96, 16, 48, 0) 11px),
        #d1e5dc;
        background-size: 20px 20px;
    }

    * {
        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 */
        margin-top: 30px;
    }

    /* the area below is for all links on your page
EXCEPT for the navigation */
    #container a {
        color: #f4b38b;
        font-weight: bold;
        /* 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: 150px;
        /* 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: repeat;
        border-radius: 5px;

    }

    #header span {
        font-size: 6rem;
	    font-weight: bold;
	    font-family: antar;
	    color: #fff;
        display:flex;
        bottom: 0;
        float:right;
        padding-right:10px;
    }

    #headerArea {
        border: 2px ridge lightgray;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    /* navigation section!! */
    #navbar {
        height: 40px;
        background-color: #cc3333;
        /* navbar color */
        width: 100%;
        border-radius: 5px;
        border-top: 2px ridge lightgray;
    }

    #navbar ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style-type: none;
        justify-content: space-evenly;
        text-transform: uppercase;
    }

    #navbar li {
        padding-top: 8px;
    }

    /* navigation links*/
    #navbar li a {
        color: white;
        /* 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 {
        background-color:#191f1a;
    }

    #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;
        border-radius: 5px;
        border: 2px ridge lightgray;
        /* this makes the sidebar text slightly smaller */
    }

    #leftSidebar {
        background-image: url(bg-right.png);
        object-fit: cover;
    }

    #rightSidebar {
        background-image: url(background.jpg);
    }

    /* this is the color of the main content area,
between the sidebars! */
    main {
        background-color: #3d493f;
        flex: 1;
        padding: 20px;
        order: 2;
        border-radius: 5px;
        border: 2px ridge lightgray;
    }

    /* 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;
    }

    #musicplayer {
        order:3 ;
    }

    #rightSidebar {
        order: 3;
    }

    footer {
        background-color: #191f1a;
        /* background color for footer */
        width: 100%;
        height: 40px;
        padding: 8px;
        text-align: center;
        border-radius: 5px;
        border: 2px ridge lightgray;
        /* this centers the footer text */
    }

    h1,
    h2,
    h3 {
        color: #cc3d1d;
    }

    h1 {
        font-size: 25px;
    }


    strong {
        /* this styles bold text */
        color: #cc3d1d;
    }

    /* this is just a cool box, it's the darker colored one */
    .box, #dorohedoro, .status-box {
        background-color: #191f1a;
        border: 1px solid #cc3d1d;
        padding: 10px;
        border-radius: 5px;
    }

    /* CSS for extras */

    #topBar {
        width: 100%;
        height: 30px;
        padding: 10px;
        font-size: smaller;
        background-color: #13092D;
    }


    /* 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: 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;
        }
    }

    .fl41 {
        font-size: 10px;
    }
   
#dorohedoro span a {
		text-align: center;
		font-size: 22px;
		margin: 5px 5px 10px 5px;
		font-family:antar;
		color:#cc3333;
        text-decoration:none;
}

#dorohedoro span a:hover {
    text-align: center;
    font-size: 22px;
    margin: 5px 5px 10px 5px;
    font-family:antar;
    color: #cc3333;
    text-shadow: 1px 0 0 #eff7bc;
    text-decoration:none;
}

#dorohedoro ul {
    list-style-type:none;
    padding:0px;
    margin:0px;
    padding-inline-start:0px;
}

#dorohedoro ul li a {
	display: block;
	margin: 5px;
	background: linear-gradient(to right,#d1e4bf,#fff);
	border-radius: 5px;
	padding: 2px 7px;
	font-family: dsbios;
	text-decoration: none;
	font-size: 1rem;
	text-transform:uppercase;
	color:#3d493f;
}	
	
#dorohedoro ul li a:hover, #dorohedoro ul li a:focus {
	background: none;
	color: #fff;
}
	
	/* media player */
#musicplayer{
    background:white; /* background color of player */
    border:2px solid #8f4329; /* border around player */
    width:100%;
	border-radius: 5px;
 /* width of the player */
}

.songtitle{
    padding:5px; /* padding around song title */
    border-bottom:2px solid #8f4329; /* border under song title */
    display:block;
    font-family: 'dsbios';
    color:#13092D;
    font-size:large;
}

.controls{
    font-size:18px !important; /* size of controls */
    background-color:#d1e4bf; /* background color of controls */
    text-align:center;
    width:100%;
}

.controls td{
    padding:8px 5px 0px 5px; /* padding around controls */
}

.seeking{
    background-color:#b48365; /* background color of seeking bar */
    display:flex;
    justify-content: space-evenly;
    padding:5px; /* padding around seeking bar */
}

.current-time{
    padding-right:5px;
}

.total-duration{
    padding-left:5px;
}

i.fas:hover{
    cursor:help;
}

i.fas.fa-pause, i.fas.fa-play, i.fas.fa-forward, i.fas.fa-backward{
    color:#8f4329; /* color of controls */
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background-color:#dbfcff; /* background color of seeking bar - make the color same as .seeking background color */
}

input[type=range]:focus {
    outline: none;
}

/* settings for chrome browsers */
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px; /* thickness of seeking track */
    cursor: help;
    background: #E74492; /* color of seeking track */
}

input[type=range]::-webkit-slider-thumb {
    height: 10px; /* height of seeking square */
    width: 10px; /* width of seeking square */
    border-radius: 0px; /* change to 5px if you want a circle seeker */
    background: #8f4329; /* color of seeker square */
    cursor: help;
    -webkit-appearance: none;
    margin-top: -4.5px; 
}

/* settings for firefox browsers */
input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px; /* thickness of seeking track */
    cursor: help;
    background: #8f4329; /* color of seeking track */
}

input[type=range]::-moz-range-thumb {
    height: 10px; /* height of seeking square */
    width: 10px; /* width of seeking square */
    border-radius: 0px; /* change to 5px if you want a circle seeker */
    background: #E74492; /* color of seeker square */
    cursor: help;
    border:none;
}

.cover img { 
max-width: 140px;
}

#gifypet {
    border-radius:5px;
    border: 2px ridge lightgray;
    width:318px;
    height:325px;
    margin-top:10px;
}

#shroom {
    border-radius:5px;
    border: 2px ridge lightgray;
    height:325px;
    width:214px;
    margin-top:10px;
    margin-left:10px;
    padding:5px;
    background-image:url(background.jpg);
}

#currently {
    background-color: #241445;
    width:100%;
    height:325px;
    padding: 20px;
    font-size: smaller;
    border-radius: 5px;
    border: 2px ridge lightgray;
    background-image: url(status-bg.jpg);
    object-fit: cover;
    margin-top:10px;
    margin-left:10px;
}

#currently ul {
    list-style-type: none;
    padding-left:20px;
}

#currently img {
    height: .7em;
}

.status-box {
    height:282px;
    overflow:auto;
}

#currently td {
    vertical-align:top;
}

#currently h4 {
    font-family:antar;
    font-size:25px;
    color:#fff;
    padding:0px;
    margin:4px;
}

#currently a {
    text-decoration:none;
}

footer img {
    height:20px;
}

.buttons {
    background-image:url(bg-right.png) ;
    width: 200px;
    font-size: smaller;
    border-radius: 5px;
    border: 2px ridge lightgray;
    padding:45px;
}

.buttons span {
    text-align:center;
    background-color: #191f1a;
    border: 1px solid #cc3d1d;
    border-radius: 5px;
    padding:8px;
}

h3 img {
    height:12px;
}

h1 img { 
float:right;}