* {
    box-sizing: border-box;
    margin: 0;
}

*:before, 
*:after {
    box-sizing: border-box;
}

@keyframes fadein {
    0% { opacity: 0; }
    40% { opacity: 0; }
    100%   { opacity: 1; }
}

html {
    height: 100%;
    animation: 2s 1 fadein;
}

body {
    background: rgb(219,219,219);background: linear-gradient(20deg, rgba(219,219,219,1) 28%, rgba(150,150,150,1) 64%);
    height: 100%;
}

/* Fonts */
@font-face {
    font-family: gotham_blackregular;
    src: url(/assets/fonts/gotham-black-webfont.woff2) format("woff2"),url(/assets/fonts/gotham-black-webfont.woff) format("woff");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: gotham_mediumregular;
    src: url(/assets/fonts/gotham-medium-webfont.woff2) format("woff2"),url(/assets/fonts/gotham-medium-webfont.woff) format("woff");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: gotham_lightregular;
    src: url(/assets/fonts/gotham-light-webfont.woff2) format("woff2"),url(/assets/fonts/gotham-light-webfont.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

video {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; 
    min-height: 100%;
    /*background: url('/assets/images/pentia20flags.jpg') center center / cover no-repeat;*/
}
form {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(231, 91, 85, 0.95);
    color: #fff;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    margin: auto;
}

@media (min-width: 600px) {
    form {
        padding: 50px 50px 25px;
    }
}

input[type="text"], 
input[type="email"] {
    font-family: 'gotham_mediumregular', Arial, Helvetica, sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    overflow: visible;
    display: block;
    border: 0px;
    width: 100%; 
    font-size: 16px;
    color: #fff;
    margin: 0 auto 20px;
    padding: 10px 5px 10px 0;
    background-color: transparent;
    border-bottom: 1px solid white;
    outline: none;
}

input::placeholder {
    color: white;
    transition: .3s;
}

input:focus::placeholder {
    color: rgba(255,255,255,.5);
    font-size: 80%;
}

input[type="submit"] {
    outline: none;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    overflow: visible;
    -webkit-appearance: button;
    border: 0 solid transparent;
    padding: 0;
    width: 60px;
    height: 50px;
    cursor: pointer;
    position: relative;
    left: calc(100% - 50px);
    transform: translateY(-10px);
    background: transparent url('/assets/images/arrow.png') 28px center no-repeat;
    transition: .3s;
}

input[type="submit"]:hover {
    background-position-x: 35px;
}

input:not(input:-webkit-autofill)::-webkit-contacts-auto-fill-button {
    background-color: #fff;
    background-position-x: 870%;
    display: none;
}

/*Spam Filtering*/
input[name="joker"] {
    display: none !important;
}

section {
    position: fixed;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(178, 57, 153, 0.95);
    color: #fff;
    width: 90%;
    max-width: 600px;
    padding: 100px 30px 80px;
    margin: auto;
}

/* Desktop */
@media (min-width: 600px) {
    section {
        padding: 170px 50px;
    }
}

h2 {
    font-family: 'gotham_mediumregular', Arial, Helvetica, sans-serif;
    margin: 0 0 10px;
    font-size: 16px;
}

h1 {
    font-family: 'gotham_blackregular', Arial, Helvetica, sans-serif;
    margin: 0 0 15px;
    font-size: 32px;
}
h1 strong {
    position: relative;
}
h1 strong:after {
    position: absolute;
    left: -27px;
    top: -18px;
    content:"";
    display: inline-block;
    background-image: url('/assets/images/krimskrams.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 88px;
    height: 70px;
}

@media (min-width: 600px) {
    h1 strong:after {
        left: -45px;
        top: -32px;
        width: 145px;
        height: 116px;
    }
}

p {
    font-family: 'gotham_lightregular', Arial, Helvetica, sans-serif;
    margin: 0 0 25px;
    font-size: 20px;
}

span {
    font-size: 150%;
    position: relative;
    bottom: -3px;
}

p img {
    width: auto;
    height: 34px;
    display: inline-block;
    position: relative;
    bottom: -10px;
    left: 3px;
}

@media (min-width: 600px) {
    h1 {
        font-size: 50px;
    }
}

.logo {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transition: .25s ease-out;
    transform: translateX(-50%);
    opacity: .9;
}
.logo:hover {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
}

.logo img .path {
    fill: red;
}
