html, body {
    /* overflow-y: hidden; */
    width: 100svw;
    height: 99svh;
}
* {
    margin: 0;
    display: block;
    box-sizing: border-box;
    font-family: sans-serif, Arial, Helvetica;
    color: #000000;
    user-select: none; /* Standard syntax */
}
input[type="text"] {
    user-select: text; /* Standard syntax */
}
style, script, link, title {
    display: none;
}
a {
    color: var(--accent-color);
    text-decoration: none;
}
a:hover{
    color: #888888;
    text-decoration: underline;
}
a.disabled {
    color: #888888;
}
a.disabled:hover {
    text-decoration: none;
}
label {
    font-size: 1.25em;
    color: #000000;
}
input[type="checkbox"] {
    accent-color: var(--accent-color);
}
input[type="radio"] {
    accent-color: var(--accent-color);
}
.button {
    background-color: var(--accent-color);
    color: #ffffff;
    font-weight: bold;
}
.button:hover {
    background-color: var(--accent-color-dark);
}
.button:active {
    background-color: var(--accent-color-darker);
}
::-webkit-scrollbar {
    -webkit-appearance: none;
}
::-webkit-scrollbar:horizontal {
    height: 0px;
}
::-webkit-scrollbar:vertical {
    width: 0px;
}
.header, .footer {
    display: block;
    overflow: hidden;
    position: relative;
    --height: 7svh;
    --width: 100%;
    min-width: var(--width);
    max-width: var(--width);
    width: var(--width);
    min-height: var(--height);
    max-height: var(--height);
    height: var(--height);
    margin: 0;
    padding: 3svh;
    background: none repeat scroll 0 0 var(--main-color);
    color: #ffffff;
}
.header * { color: #ffffff; text-decoration: none; }

@keyframes hamburger_open {
    0% { padding: 0px; width: 0px; height: 0px; opacity: 0; }
    75% { opacity: 1; }
    100% { padding: 1rem; width: var(--width); height: var(--height); opacity: 1; }
}
.hamburger {
    position: absolute;
    right: 0px;
    top: 7svh;
    --width: 8rem;
    --height: 6.25rem;
    opacity: 1;
    padding: 1rem;
    padding-bottom: 0.75rem;
    overflow: hidden;
    background-color: #525252;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 0.5rem;
    border-top-right-radius: 0;
    animation-play-state: paused;
}
@keyframes hamburger_close {
    0% { padding: 1rem; width: var(--width); height: var(--height); opacity: 1; }
    75% { opacity: 0; }
    100% { padding: 0px; width: 0px; height: 0px; opacity: 0; }
}
.hamburger.closed {
    animation-name: hamburger_open;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
.hamburger.opened {
    animation-name: hamburger_close;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
.hamburger.play_animation {
    animation-play-state: running !important;
}
.menu-button {
    width: 6rem;
    height: 2rem;
    font-size: 1rem;
    border-style: solid;
    border-width: 1px;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
}
.container {
    display:flex;
    align-items: center;
    flex-direction: column;
    --width: 100%;
    --height: 86svh; /* 100svh-7svh-3svh-7svh-3svh */
    min-width: var(--width);
    width: var(--width);
    max-width: var(--width);
    min-height: var(--height);
    height: var(--height);
    /* doesnt have max height */
    padding: 0px !important;
    overflow-y: auto;
    overflow-x: hidden;
}
.nav {
    display: flex;
    flex-direction: row;
    --width: 100%;
    --height:2.5em;
    min-width: var(--width);
    max-width: var(--width);
    width: var(--width);
    min-height: var(--height);
    max-height: var(--height);
    height: var(--height);
    
    background-color: #555555;
    border-top: solid 3px #333333;
    border-bottom: solid 3px #333333;
    margin-bottom: 1%;
}
.empty {
    --height:0%;
    border: none;
}
.page-header {
    --width: 100%;
    min-width: var(--width);
    max-width: var(--width);
    width: var(--width);
    padding-left: 20%;
}
.content {
    display:block;
    --width: 1%;
    min-width: var(--width);
    max-width: var(--width);
    width: var(--width);
    border: 2px solid #808080;
    border-radius: 10px;
    margin: 2svi;
    padding: 1svi;
}
.content.w-thin {
    --width: 35svi;
}
.content.w-mid {
    --width: 50svi;
}
.content.w-wide {
    --width: 90svi;
}
.footer * { color: #ffffff; }

/* inputs formatting */
.content input {
    width: 100%;
    height: 2.5em;
    padding: 0.5em;
    border: 1px solid #888888;
    border-radius: 10px;
    color: #000000;
    font-size: 1.25em;
}
.content select {
    width: 100%;
    height: 2.5em;
    padding: 0.5em;
    border: 1px solid #888888;
    border-radius: 10px;
    color: #000000;
    font-size: 1.25em;
}
.content input[type="checkbox"] {
    width: 2em;
    height: 2em;
}
.content input[type="radio"] {
    width: 2em;
    height: 2em;
}
.content .button {
    color: #ffffff;
    font-weight: bold;
}
/* end inputs formatting */

/* used in header and footer */
.float-left {
    position: absolute;
    margin: 0;

    text-align: left;
    left: 3%;
    width: 44%;
    
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.header > .float-left {
    height: 100%;
}
.float-right {
    position: absolute;
    margin: 0;

    text-align: right;
    right: 3%;
    width: 44%;
    
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
/* end used in header and footer */

/* images and icons */
.headerlogo {
    background: url("/img/headerlogo.png") no-repeat;
    background-position: center;
    background-size: auto 100%;
    display: block;
    margin-top: 0.5svh;
    height: 6svh;
    overflow: hidden;
    aspect-ratio: 4.5;
}
.icon {
    display: inline-block;
    vertical-align: top;
    width: 38px;
    height: 38px;
    cursor: pointer;
    margin-left: .01%;
}
.edit-icon {
    background: url("/img/edit_icon.png");
    background-size: 40px;
}
.edit-icon:hover {
    background: url("/img/edit_icon_hover.png");
    background-size: 40px;
}
.icon-blog {
    background: url("/img/blog.png") no-repeat;
}
.hamburger-icon {
    background: url("/img/hamburger.png");
    background-size: 40px;
}
.icon-linked {
    background: url("/img/linked.png") no-repeat;
}
.icon-twitter {
    background: url("/img/twitter.png") no-repeat;
}
.icon-facebook {
    background: url("/img/facebook.png") no-repeat;
}
/* end images and icons */