
header{
    display: block;
    position: relative;
    height: 100vh;
    background:var(--black);
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    width:100%
}

header .bg{
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    transform: scale3d(1.2, 1.2, 1.2);
    animation: zoomout 2s ease-out forwards;
    opacity: 0.7;
}

.container{
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height:max-content;
    margin: auto;
    max-width: 1028px;
}

.container h1{
    display: block;
    text-align: center;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 23px;
    color:white;
    font-size:clamp(1.5em,10vw,5em);
    font-weight: normal;
    text-shadow: 0 5px 10px var(--text_shadow);
}

.container h4{
    display: block;
    font-weight:normal;
    text-align: center;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 23px;
    text-shadow: 0 1px 2px var(--text_shadow);
    color:white;
}

.container .btn{
    display: block;
    position: relative;
    color:white;
    font-weight:bold;
    font-size:22px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 20px 25px;
    text-shadow: 0 1px 3px var(--text_shadow);
    text-align: center;
}
.container .btn i{
    position:relative;
    margin-right: 5px;
    left:0;
    transition: all .3s ease-out;
}
.container .btn:hover i{
    left: -10px;
}

@media only screen and (max-width: 1028px) {

    header .bg{
        opacity: 0.5;
    }
    .container{
        width:95%
    }

}