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

body {
    overflow-x: hidden;
}

@font-face{
    font-family:"HelvNeue45";
    src:url("./assets/fonts/EOT/HelvNeue45.eot?#iefix");
    src:url("./assets/fonts/EOT/HelvNeue45.eot?#iefix") format("eot"),
    url("./assets/fonts/WOFF2/HelvNeue45.woff2") format("woff2"),
    url("./assets/fonts/WOFF/HelvNeue45.woff") format("woff"),
    url("./assets/fonts/TTF/HelvNeue45.ttf") format("truetype"),
    url("./assets/fonts/SVG/HelvNeue45.svg") format("svg");
}

@font-face{
    font-family:"HelvNeue75";
    src:url("./assets/fonts/EOT/HelvNeue75.eot?#iefix");
    src:url("./assets/fonts/EOT/HelvNeue75.eot?#iefix") format("eot"),
    url("./assets/fonts/WOFF2/HelvNeue75.woff2") format("woff2"),
    url("./assets/fonts/WOFF/HelvNeue75.woff") format("woff"),
    url("./assets/fonts/TTF/HelvNeue75.ttf") format("truetype"),
    url("./assets/fonts/SVG/HelvNeue75.svg") format("svg");
}

main {
    background-image:url('./assets/img/background-image.jpg') ;
    background-position: center;
    background-size: cover;
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden;
    background-repeat: no-repeat;
}

.overlay {
    width: 100vw;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1;
}

.container {
    width: 100%;
    height: auto;
}
.block{ 
    padding: 0 40px;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

h1 {
    font-family:"HelvNeue75";
    text-align: center;
    color: #fff;
    font-size: 48px;
}
p {
    font-family:"HelvNeue45" ;
    text-align: center;
    color: rgba(255, 255, 255, .8);
    font-size: 32px;
    margin-bottom: 30px;
}
.orange {
    color:#f16e00;
}

.logo-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    margin-top: 25px;
    width: 115px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    transition: all 350ms linear;
}

a:hover {
    color:#f16e00;
}

.block__text {
    color: #fff;
    font-family: "HelvNeue45";
    font-size: 24px;
    font-weight: 200;
    text-align: center;
}

.block__text-title {
    color: #fff;
    font-family: "HelvNeue75";
    font-size: 24px;
    text-align: center;
}

.signature {
    color: #fff;
    font-family: "HelvNeue45";
    align-self: flex-end;
    font-size: 24px;
    text-align: center;
}

@media  (max-width:768px) {

    h1 {
        font-size: 32px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    p {
        font-size: 18px;
        margin-bottom: 50px;
    }

    .logo {
        margin-top: 0;
        width: 80px;
    }

    .block__text, .block__text-title, .signature {
        font-size: 18px;
        text-align: center;
        line-height: 1.5;
    }

    .block {
        padding-bottom: 35px;

    }
}