:root {
    --get-button-color: rgb(46, 171, 84);
    --get-button-color-dark: rgb(25, 97, 42);
    --wiki-button-color: rgb(171, 134, 46);
    --wiki-button-color-dark: rgb(97, 68, 25);
    --levels-button-color: rgb(150, 46, 171);
    --levels-button-color-dark: rgb(78, 25, 97);
    --dc-button-color: rgb(46, 67, 171);
    --dc-button-color-dark: rgb(25, 35, 97);

    --outline-color: rgb(132, 0, 180);
    --outline-color-lighter: rgb(82, 0, 112);

    --feature-outline-color: rgb(196, 203, 0);
    --feature-outline-color-lighter: rgb(114, 118, 0);

    --subtext-green: rgb(0, 185, 0);
    --subtext-red: rgb(202, 0, 0);
    --subtext-default: rgba(255, 255, 255, 0.5);
}

* {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(14, 0, 20);
    scrollbar-width: 12px;
}

input, textarea {
    background-color: black;
    border: solid 1px var(--outline-color-lighter);
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: none;
}

select, option {
    background-color: black;
    border: 1px solid var(--outline-color);
    border-radius: 0;
    appearance: none;
    font-size: 14px;
    padding: 10px;
    padding-right: 40px;
}

select {
    background-image: url(/res/etc/dropdown.svg);
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 24px;
}

select:focus {
    outline: none;
}

.center-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;

    min-height: 100vh;
}

@keyframes osinotification {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  
  90% {
    transform: translateY(0);
    opacity: 1;
  }
  
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* navbar stuff */

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: black;
    border-bottom: solid 1px var(--outline-color);
}

nav > ul {
    width: 100%;
    max-width: 1200px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav > ul > li {
    width: auto;
}

nav > ul > li > a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    padding: 20px 20px;
}

nav > ul > li > a > span {
    display: block;
}

nav > ul > li > a > img {
    display: block;
}

nav > ul > li > a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    nav > ul > li > a > span {
        display: none;
    }

nav > ul > li > a > img {
        display: block;
    }
}