@import url('https://fonts.googleapis.com/css?family=Work+Sans:100,200,300,400,500,600,700,800,900&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
*{
    font-family: 'Lato', sans-serif;
}
/*============================================================================================================================= */

body {
    animation: transitionIn 4s;
}
@keyframes transitionIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../kepek/hatter.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.fejlec {
    position: absolute;
    top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 150px;
    transition: opacity 1s ease-out;
    z-index: 1;
}

.hozd {
    font-size: 6em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
    letter-spacing: 10px;
    color: #f5793b;
}

.mentalis {
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
    letter-spacing: 10px;
    color: white;
}

.input:checked~nav {
    width: 21%;
}

.input:checked~.fejlec {
    opacity: 0.2;
}

.input:checked~.btn {
    opacity: 0.2;
}

.container .label{
    left: 1%;
    top: 1%;
}
