@font-face {
    font-family: 'sweet_sans_prolight';
    src: url('./fonts/sweetsansprolight.woff2') format('woff2'),
         url('./fonts/sweetsansprolight.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'sweet_sans_promedium';
    src: url('./fonts/sweetsanspromedium.woff2') format('woff2'),
         url('./fonts/sweetsanspromedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

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

html, body, a {
    font-family: 'sweet_sans_prolight';
    color: white;
    text-decoration: unset;
}

main {
    background: url(./bg.webp) center/cover no-repeat;
    height: 100vh;
    width: 100vw;
    padding: 60px 0 70px;
}


.container {
    max-width: 683px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 16px;
}

.head {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.head svg {}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.40);
    max-width: 660px;
    margin: auto auto 35px;
    width: 100%;
}

.content h1 {
    font-size: 56px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -2.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 50px;
}

.contacts p, .contacts a {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.logo {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.logo svg {
}

.footer {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.footer div {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.footer div:first-child {
    padding-right: 20px;
    border-right: 1px solid white;
}

.footer div p {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    flex-shrink: 0;
}

.footer div p:first-child {
    font-family: 'sweet_sans_promedium';
    font-weight: 500;
}

.footer div a {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: underline;
    flex-shrink: 0;
}


@media screen and (max-width: 991px) {
    main {
        padding: 50px 0;
    }
    .content {
        margin-bottom: 24px;
        padding-bottom: 32px;
    }
    .content h1 {
        font-size: 32px;
        letter-spacing: -1.6px;
        margin-bottom: 10px;
    }
    .content p {
        font-size: 14px;
    }

    .contacts {
        margin-bottom: 100px;
    }

    .logo {
        margin-bottom: 32px;
    }

    .footer {
        flex-direction: column;
        gap: 16px;
    }

    .footer div:first-child {
        padding-right: 0;
        border-right: unset;
    }

    .footer div {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
        a {
            width: 100%;
        }
    }
}