@font-face {
    font-family: "TT2020_REG";
    src: url(./global/fonts/Tt2020StyleB-axYBg.ttf)format("woff2");
}

body {
    font-family: "TT2020_REG";
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: white;
    background-image: url(./global/images/background.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-size: 18px;
}

.email {
    font-family: 'Courier New', Courier, monospace;
    font-variant: small-caps;
    font-size: x-large;
    margin-bottom: 20px;
    height: 100%;
}

.cover_lang {
    height: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;

}

.index_lang {
    padding: 0px;
}

.magyar_zaszlo {
    margin-bottom: 20px;
}

.google_form {
    height: 1250px;
    margin-bottom: 10px;
}

.form {
    height: 100%;
}

main {
    flex-grow: 1;
}

.warning_lang {
    color: red;
    font-weight: bold;
}

.work_bg {
    background-color: lightgray;
    border-radius: 4px;
    padding: 10px;
}

/* Animations */

.floatup {
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}

.floatup:hover,
.floatup:focus,
.floatup:active {
    transform: translateY(-8px);
}

.grow {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
    transition-property: transform;
}

.grow:hover,
.grow:focus,
.grow:active {
    transform: scale(1.025);
}

.growbigger {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
    transition-property: transform;
}

.growbigger:hover,
.growbigger:focus,
.growbigger:active {
    transform: scale(1.06);
}

.navbtn {
    border: none;
    color: black;
    text-align: center;
    margin: 2px 2px;
    transition: 0.2s;
}

.navbtn:hover {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 10px;
}

.more {
    padding: 16px 40px;
    background: #041541;
    background-image: linear-gradient(to left, transparent, transparent 50%, darkred 50%, darkred);
    background-position: 100% 0;
    background-size: 200% 100%;
    transition: 0.8s;
    cursor: pointer;
    color: white;
    text-shadow: 2px 2px 0px #563F3B;
    text-transform: uppercase;
    font-family: 'TT2020_REG';
    font-size: 22px;
}

.more:hover {
    background-position: 0 0;
    transition: 0.8s;
}

.onthispage {
    transition: .2s;
    text-decoration: solid;
}