html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,main {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

html {
    font-size: 18pt;
    text-shadow: 0 0 4px rgb(0, 0, 0, .6);
}

body {
    font-family: 'Arial', sans-serif;
    color: #fff;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2rem;
}

h2:after {
    content: '';
    display: block;
    width: 2em;
    border-bottom: 3.5px solid #49bf25;
    margin-top: 1rem;
}

p, ul {
    margin-top: 1rem;
    font-size: 1em;
    letter-spacing: 0;
}

#header, #header:before, #header:after {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#header:before, #header:after {
    position: absolute;
    content: '';
    display: block;
    z-index: 0;
    -moz-pointer-events: none;
    -webkit-pointer-events: none;
    -ms-pointer-events: none;
    pointer-events: none;
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    background-attachment: scroll;
    background-image: linear-gradient(90deg, rgba(0,0,0,0.529) 19%, rgba(0,0,0,0.129) 61%), url("bg-new.webp");
    background-position: 0 0, 20% 20%;
    background-repeat: repeat, repeat;
    background-size: cover, cover;
    background-color: #FFFFFF;
}

#header:before {
    /*animation: 3s ease-out 0s 1 feest;*/
    filter: brightness(1.1) saturate(1.3) blur(5px);
}

#header:after {
    background-image: url('/cutout-new.webp');
    background-position: 20% 20%;
    background-size: cover;
    background-color: transparent;
    /* animation: 1s ease-out 0s 1 antonSlide; */
    overflow: hidden;
    opacity: 0;
    transition: opacity 2.5s ease-in-out 0s;
    filter: saturate(1.2) brightness(1.1);
}

#header.load:after {
    opacity: 1;
}

@keyframes antonCringe {
    0% {
        transform: scale(1.05) translateX(100%);
    }
    100% {
        transform: scale(1.05) translateX(0);
    }
}

@keyframes antonSlide {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes feest {
    0% {
        filter: saturate(0) blur(6px);
    }
    100% {
        filter: saturate(1.4) blur(6px);
    }
}

main {
    position: relative;
    padding: 7em 3em 3em;
    max-width: 33rem;
    min-width: 500px;
}

#load {
    display: block;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 1;
    -moz-transition: opacity 2.5s ease-in-out 0s, visibility 2.5s 0s;
    -webkit-transition: opacity 2.5s ease-in-out 0s, visibility 2.5s 0s;
    -ms-transition: opacity 2.5s ease-in-out 0s, visibility 2.5s 0s;
    transition: opacity 2.5s ease-in-out 0s, visibility 2.5s 0s;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

#load.done {
    opacity: 0;
    visibility: hidden;
}

ul {
    list-style: none;
}

a {
    color: white;
    /*border-bottom: dotted 1px white;
    text-decoration: none;*/
}

a:hover {
    color: #49bf25;
    /*border-bottom: dotted 1px #49bf25;*/
}

#socials > li {
    display: inline;
    margin-right: 0.3rem;
}

svg {
    fill: currentColor;
    height: 1.5rem;
    width: 1.5rem;
}

@media (max-width: 1680px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 980px) {
    html {
        font-size: 11pt;
    }

    #header {
        position: sticky;
        width: 100vw;
        height: 40vh;
    }

    #header:before, #header:after {
        background-image: linear-gradient(90deg, rgba(0,0,0,0) 19%, rgba(0,0,0,0) 61%), url("bg-new.webp");
        position: relative;
        width: 100%;
        height: 40vh;
        -moz-flex-grow: 1;
        -webkit-flex-grow: 1;
        -ms-flex-grow: 1;
        flex-grow: 1;
        -moz-flex-shrink: 0;
        -webkit-flex-shrink: 0;
        -ms-flex-shrink: 0;
        flex-shrink: 0;
        top: 0;
    }

    #header:before {
        filter: brightness(1.1) saturate(1) blur(5px);
    }

    #header:after {
        position: absolute;
        background-image: url('/cutout-new.webp');
    }

    main {
        background: #2c2b30;
        min-height: 60vh;
        width: 100vw;
        padding: 3em 2em;
        max-width: 100vw;
        min-width: 100vw;
    }
}

i {
    font-style: italic;
}
