/* Oh Hi, didn't see you come in!
 * Welcome to the CSS file, dear Netizen!
 * My apologies, nothing here makes any sense
 * you might be able to get something out of this but I'm not sure
 * 
 * 
 * 
 * If you are looking for tips here are two sites that helped me a lot
 * 
 * This one helped me with wrap my head around flex layouts:
 * https://keeri.place/workshop/flex-layouts
 * 
 * And this one helped me make my site more readable (hopefully it worked):
 * https://solaria.neocities.org/readability
 * 
 * 
 * 
 * Well, this site was made with trial & error (mostly error lol)
 * Both the main HTML and CSS is more organised & readable then any
 * of my previous sites, so if you need anything - GO WILD!!! */

 @import url(https://fonts.bunny.net/css?family=lobster:400|metrophobic:400|titillium-web:400|ubuntu-condensed:400);
 
 /* Here I'm setting variables for colors, as apparently you can do that?
 * (idk, it was news to me, and you may not be as excited as I was about it */
:root{
    --TextColor: #BCE4AD;
    --SecondaryColor: #16966F;
    --MainBackdrop: #092630;
    --HighlightText: #EF8A16;
    --HighlightBg: rgb(239, 138, 22, 0.2);
    --FocusText: #169fef;
    --FocusBg: rgb(22, 159, 239, 0.15);
}

body{
    background: url("../images/backgrounds/primary.png");
    color: var(--TextColor);
    letter-spacing: 1px;
    word-spacing: 3px;
    line-height:20px;
}

#Container{
    display: flex;
    flex-direction: column;
    width: 850px;
    height: 95vh;
    Margin: auto;
}

#Header{
    background: url('../images/header/primary.png');
    height: 150px;
    border-radius: 25px 25px 0 0;
    border-style: solid;
    border-color: black black var(--SecondaryColor) black;
    border-width: 1px 1px 2px 1px;
    flex-shrink: 0;
}

#Main{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*min-height: 400px;*/
    height: 100%;
}

#Footer{
    background-color: var(--MainBackdrop);
    border-radius: 0 0 10px 10px;
    text-align: center;
    width: 848px;
    border-style: solid;
    border-color: var(--SecondaryColor) black black;
    border-width: 2px 1px 1px 1px;
    font-family: 'Ubuntu Condensed', sans-serif;
}

#Rsidebar{
    background-color: var(--MainBackdrop);
    width: 130px;
    padding-left: 10px;
    Padding-right: 10px;
    Margin: 0px;
    border-style: solid;
    border-color: var(--TextColor) var(--TextColor) var(--TextColor) black;
    border-width: 0 2px 0 1px;
}

/* commented out as I don't have left Sidebar at the moment, left for checks

#Lsidebar{
    background-color: var(--MainBackdrop);
    width: 140px;
    padding-left: 10px;
    Padding-right: 10px;
    Margin: 0px;
    border-style: solid;
    border-color: var(--TextColor) black var(--TextColor) var(--TextColor);
    border-width: 0 1px 0 2px;
} */

#Frame{
    background-color: var(--MainBackdrop);
    font-family: 'Titillium Web', sans-serif;
    width:100%;
    /*Padding: 8px 30px 8px 30px;*/
    border-width: 0 1px 0 0;
    border-color: black;
    border-style: solid;
}

#ContentFrame{
    Width: 100%;
    height: 100%;
    border: none;
}

/* The divide class is for Sidebars */
.SidebarDivide{
    font-family: 'Ubuntu Condensed', sans-serif;
    font-weight: bold;
    font-size: 16px;
    background:  var(--SecondaryColor);
    margin-left:-10px;
    margin-right:-10px;
    margin-top:0px;
    margin-bottom:0px;
    padding: 5px;
    text-align: center;
    border-style: solid;
    border-color: var(--TextColor);
    border-width: 0 0 3px 0;
}

/* classes for highlight and focus */
.highlight{
    background-color: var(--HighlightBg);
    Border-left: 4px solid var(--HighlightText);
    Padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    Font-size: 18px;
    width: 85%;
    color: var(--HighlightText);
    border-radius: 3px 25px 5px 3px;
 }
    
.focus{
    background-color: var(--FocusBg);
    Border-left: 4px solid var(--FocusText);
    Padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    Font-size: 18px;
    Width: 85%;
    color: var(--FocusText);
    border-radius: 3px 25px 5px 3px;
}

.divide{
    font-family: 'Ubuntu Condensed', sans-serif;
    font-weight: bold;
    font-size: 16px;
    background:  var(--SecondaryColor);
    margin-left:-10px;
    margin-right:-10px;
    margin-top:0px;
    margin-bottom:0px;
    padding: 5px;
    text-align: center;
    border-style: solid;
    border-color: var(--TextColor);
    border-width: 0 0 3px 0;
}

a, a:link, a:visited{
    color: var(--HighlightText);
    text-decoration:none;
}

    a:hover, a:active{
    Color: var(--HighlightText);
    text-decoration:underline;
}

#menu{
    list-style:none;
    Padding-left: 8px;
    Padding-right: 0px;
    text-align: right;
    font-family: 'Metrophobic', sans-serif;
    Font-size: 16px;
    letter-spacing: 0px;
}
    
#center{
    display:block;
    margin:auto;
}

#neobutton{
    margin-left: auto;
    margin-right: auto;
    Padding-top: 8px;
    width: 88px;
    }
