html{
    font-family: "Uncut", sans-serif, monospace;
    font-size: 16px;
    color: black;
    scroll-behavior: smooth;
}

/* COLORS */

.white{
    color: #FFF;
}

.background_white{
    background-color: #FFF;
}

.grey{
    color: #E0E0E0;
}

.background_grey{
    background-color: #E0E0E0;
}

.black{
    color: #252525;
}

.background_black{
    background-color: #252525;
}

.orange{
    color: #FF684F;
}

.background_orange{
    background-color: #FF684F;
}

.pink{
    color: #FF85EB;
}

.background_pink{
    background-color: #FF85EB;
}

.purple{
    color: #CB5CFF;
}

.background_purple{
    background-color: #CB5CFF;
}

.green{
    color: #74FB8A;
}

.background_green{
    background-color: #74FB8A;
}

/* FONT CLASS */

.uncut{
    font-family: "Uncut";
}

.junicode{
    font-family: "Junicode";
}

i, em{
    font-style: italic;
}

b, strong{
    font-weight: 600;
}

sup {
    color: black;
    text-decoration: none;
    font-size: 14px;
}

/* HEADER NAVIGATION BAR */

header{
    height: 56px;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.transparent_background{
    background-color: transparent;
}

.black_background{
    background-color: #252525;
}

.white_background{
    background-color: white;
}

#logo_header{
    height: calc(100% - 16px);
    margin-top: 8px;
    margin-left: 32px;
}

.header_left{
    height: inherit;
    text-align: left;
    width: fit-content;
    position: fixed;
    left: 0;
}

.header_right {
    height: inherit;
    text-align: right;
    width: fit-content;
    position: fixed;
    right: 0;
    margin-right: 32px;
}

ul.menu_buttons {
    height: 56px;
}

li.menu_button {
    display: inline-block;
    line-height: 56px;
    padding-left: 24px;
    padding-right: 24px;
}

.menu_button:nth-last-child(1) {
    padding-right: 0px;
}

#dropdown{
    display: none;
}

label {
    display: none;
}

input{
    display: none;
}

/* BUTTONS */

a.button_active{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    background-color: white;
    color: #252525;
    box-shadow: 0 0px 8px 8px white;
    border: 2px solid transparent;
    border-radius: 18px;
    padding-left: 8px;
    padding-right: 8px;
    cursor: pointer;
}

a.button_active:hover {
    background-color: white;
    color: #252525;
    box-shadow: 0 0px 8px 8px white;
    border: 2px solid transparent;
}


a.button_negative{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid white;
    border-radius: 18px;
    padding-left: 8px;
    padding-right: 8px;
    cursor: pointer;
}

a.button_negative:hover {
    background-color: white;
    color: #252525;
    box-shadow: 0 0px 8px 8px white;
    border: 2px solid transparent;
}

a.button_positive{
    color: #252525;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #252525;
    border-radius: 18px;
    padding-left: 8px;
    padding-right: 8px;
    cursor: pointer;
}

a.button_positive:hover {
    background-color: #252525;
    color: white;
    box-shadow: 0 0px 8px 8px #252525;
    border: 2px solid transparent;
}

/* MAIN */

main {
    display: grid;
    background-color: red;
    margin-top: 56px;
    grid-template-columns: repeat(12, 1fr);
}

@media only screen and (max-width: 700px) {
    #logo_header {
        margin-left: 16px;
    }

    .header_right{
        margin-right: 16px;
    }
}
