:root {
    --background: #4eaaff;
    --header_background: #5409DA;
    --header_bar: #8DD8FF;
    --header_bar_hover: #8de6ff;

    --font_color: white;
    --main0: #5409DA;
    --main0_hover: #5d00ff;
    --main1: #8DD8FF;
    --main2: #BBFBFF;
    --main3: #4E71FF;
    --accent0: #00ff84;
    --accent1: #77E4C8;
    --santa: hidden;
}

[data-theme="fun_theme"] {
    --background: #F3558E;
    --header_background: #581B98;
    --header_bar: #FAEE1C;
    --header_bar_hover: #ffff00;

    --main0: #581B98;
    --main0_hover: #8B2CEF;
    --main1: #FAEE1C;
    --main2: #ffff00;
    --accent0: #77E4C8;
    --accent1: #9C1DE7;
    --santa: hidden;
}

@font-face {
    font-family: "Orbiton";
    src: url(fonts/Orbiton/Orbitron-VariableFont_wght.ttf);
}
@font-face {
    font-family: "Oxanium";
    src: url(fonts/Oxanium/Oxanium-VariableFont_wght.ttf);
}

body {
    background-color: var(--background);
    color:white;
    font-size: small;
    font-family: 'Oxanium','Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0;
    overflow-wrap: break-word;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}


header {
    font-size: 1.2em;
    background-color: var(--header_background);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 165px;
}

.main_title {
    position: relative;
    background-color: var(--header_bar);
    padding: 10px 0;
    margin: 10px 0;
    box-shadow: 0 0 7px rgba(0,0,0,0.5);
    text-indent: 20px;
}
.page_title {
    position: relative;
    margin: 10px 0;
    text-indent: 30px;
}



.navbar {
    background-color: var(--header_bar);
    border: solid var(--font_color);
    border-width: 3px 0;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    overflow: hidden;
    padding-left: 10px;
}
.dropdown_menu {
    width: 215px;
}
.navbar a, .dropdown_button {
    font-size: medium;
    font-weight: bold;
    text-decoration: none;
    color: var(--font_color);
    padding: 10px 16px;
}
.navbar a:hover, .dropdown_button:hover {
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 10%;
}

.dropdown_button {
    background-color: var(--header_bar);
    color: var(--font_color);
    width: inherit;
    border: none;
    text-decoration: none;
    font-family: inherit;
}
.dropdown_button.active {
    background-color: var(--header_bar_hover);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 10%;
}
.dropdown_button_icon {
    position: relative;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--font_color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline;
    vertical-align: middle;
    transition: transform 0.2s;
}

.dropdown_content {
    display: none;
    position: absolute;
    width: inherit;
    background-color: var(--header_bar_hover);
    z-index: 10;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 25px 20px -10px;
    border-radius: 0 0 15px 15px;
}
.dropdown_content a {
    display: block;
    padding: 12px 16px;
    font-size: 90%;
}
.dropdown_content a:hover{
    box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.2) inset;
}
#a2021 {
    border-radius: 0 0 15px 15px;
}





/* Main */

main {
    position: relative;
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 165px;
    height: 100%;
}
.main_container {
    position: relative;
    margin-top: 180px;
    width: 100%;
    margin-left: 20px;
}
#main_img {
    position: relative;
    overflow: hidden;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgb(0, 0, 0);
    z-index: 1;
}
#welcome_title {
    position: absolute;
    font-size: 6vw;
    top: 40%;
    left: 40%;
    transform: translate(-60%, -60%);
    z-index: 1;
    width: 40%;
    text-shadow: 4px 4px 5px rgba(0, 255, 85, 0.575);
}