@font-face {
    font-family: futura;
    src: url(./FALQN/Futura\ PT\ Medium.ttf) format('truetype');
}

body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    background: url(./FALQN/main_banner.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
    background-position: center;
    background-color: rgba(92, 92, 92, 255);
}

.header {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 17%;
}

.header img {
    width: 100%;
}

.footer {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-family: futura;
}

.footer h4,
.footer a,
.footer span {
    font-family: futura;
    text-decoration: none;
    font-weight: 400;
    color: white;
}

.footer a {
    margin-top: 40px;
    font-size: 25px;
}

.footer span {
    font-size: 20px;
    margin-top: 10px;
}

.footer h4 {
    font-size: 20px;
    margin: 0;
}

.footer p {
    font-size: 20px;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    body {
        background-size: cover;
    }

    .header {
        width: 50%;
    }

    .footer a {
        margin-top: 40px;
        font-size: 21px;
    }

    .footer span {
        font-size: 16px;
        margin-top: 10px;
    }

    .footer h4 {
        font-size: 16px;
        margin: 0;
    }

    .footer p {
        font-size: 16px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1366px) {
    body {
        background-size: cover;
    }

    .header {
        width: 40%;
    }

    .footer a {
        margin-top: 40px;
        font-size: 30px;
    }

    .footer span {
        font-size: 25px;
        margin-top: 10px;
    }

    .footer h4 {
        font-size: 25px;
        margin: 0;
    }

    .footer p {
        font-size: 25px;
    }
}