:root{
    font-family: "Odibee Sans", serif;
    color: white;
    text-align: center;
    scroll-behavior: auto;
}
body{
    background-color: black;
    margin: 0;
}
nav{
    display: block;
    top: 0;
    position: sticky;
    border-bottom: 5px solid cyan;
    background-color: black;
    height: 85px;
}
.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
}
.nav-elements{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.nav-banner-secondary{
    display: flex;
    padding: 10px;
    background-color: #aa0000;
    font-size: 20px;
    text-shadow: 0 0 5px #000000;
}
.nav-banner-hidden{
    display: none;
}
#navbar-wip-dismiss{
    text-decoration: underline solid white;
    cursor: pointer;
}
.logo-image{
    width: 250px;
}
.menu-item{
    text-decoration: none;
    color: cyan;
    align-items: center;
    font-size: x-large;
    margin-right: 20px;
    text-underline-style: dash;
    text-underline-offset: 5px;
    text-underline-color: cyan;
}
.menu-item:last-child{
    margin-right: 0;
}
.github-logo{
    width: 50px;
    cursor: pointer;
    padding-right: 10px;
}
section{
    position: inherit;
    margin: 1em auto 2em;
    border: 5px solid cyan;
    width: 75%;
}
section:last-child {
    margin-bottom: 70px;
}
a{
    color: yellow;
}
a:hover{
    text-decoration: underline #7100ff 2px;
}
#leo-link{
    color: lime;
}
#leo-link:hover{
    text-decoration: underline yellow 2px;
}
h1{
    font-weight: normal;
    font-size: 50px;
}
p{
    font-size: 30px;
}
footer{
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    color: white;
    background-color: black;
    border-top: 5px solid cyan;
    height: auto;
    padding: 10px;
}
.message-container{
    display: flex;
    flex-direction: row;
    font-size: x-large;
    text-align: center;
    overflow-y: auto;
    max-height: 60px;
}
li{
    font-size: 30px;
    color: cyan;
}
.buttonsContainer{
    display: flex;
    justify-content: center;
}
button{
    font-family: 'Odibee Sans', serif;
    padding: 10px;
    font-size: 20px;
    background-color: black;
    margin: 10px;
    display: flex;
    align-items: center;
    color: white;
    border: none;
}
button#youtube{
    color: red;
    border: 2px solid red;
}
button#youtube:hover img#youtube{
    content: url(socialicons/YouTube_highlighted.svg);
}
button#youtube:hover{
    background-color: red;
    color: white;
}
button#twitter{
    color: #249ef0;
    border: 2px solid #249ef0;
}
button#twitter:hover img#twitter{
    content: url(socialicons/twixter_highlight.svg);
}
button#twitter:hover{
    background-color: #249ef0;
    color: white;
}
button#twitch{
    color: #6116ea;
    border: 2px solid #6116ea;
}
button#twitch:hover img#twitch{
    content: url(socialicons/twitch_highlight.svg);
}
button#twitch:hover{
    background-color: #6116ea;
    color: white;
}
button#bluesky{
    color: #1185FE;
    border: 2px solid #1185FE;
}
button#bluesky:hover img#bluesky{
    content: url(socialicons/Bluesky_highlight.svg);
}
button#bluesky:hover{
    background-color: #1185FE;
    color: white;
}
img#discord{
    border: 5px solid cyan;
}
img#discord:hover{
    cursor: pointer;
}
button#general{
    color: cyan;
    border: 2px solid cyan;
}
img#general{
    width: 30px;
    padding-right: 10px;
}
button#general:hover{
    background-color: #7100ff;
    color: yellow;
    border: 2px solid #7100ff;
}
p{
    margin-top: 10px;
}