html {
    overflow-x: hidden;
    overflow-y: auto;
}

html,
body {
    min-height: 100%;
}

body {
    background-image: url('./bg.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    background-attachment: fixed;

    font-family: 'Poppins', sans-serif;

    margin: 0;
    padding: 0;

    color: #fff;
}

.comingsoon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;
    height: 100dvh;

    padding: 0;
}

.logo {
    width: 650px;
    height: auto;
}

.content-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-top: 30px;
}

.content-header h1 {
    font-family: 'Philosopher', sans-serif;
    text-transform: uppercase;

    width: 60%;

    text-align: center;

    margin: 0;
}

.content-header h5 {
    background-color: #944B12;

    margin: 0;
    margin-top: -5px;
    padding: 3px 12px;

    border-radius: 12px;

    font-weight: 500;
}

.content-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 15px;

    margin-top: 70px;
}

.content-social {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 15px;

    margin-top: 15px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    text-align: center;

    font-weight: 500;

    border: 1px transparent solid;
    border-radius: 14px;
}

.btn.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: #082246;
}

.btn.btn-white:hover {
    background-color: #082246;
    color: #fff;
}

.btn.btn-icon {
    background-color: #944B12;

    border-radius: 11px;

    padding: 7px;
}

.btn.btn-icon:hover {
    background-color: #082246;
    color: #fff;
}

.btn.btn-icon img {
    width: auto;
    height: 20px;
}

.content-footer {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    border-top: 1px #944B12 solid;

    margin-top: 70px;
    padding-top: 10px;
}

.content-footer img {
    width: auto;
    height: 20px;
}

@media only screen and (max-width: 1440px) {
    .comingsoon {
        height: auto;
        padding: 50px 0;
    }

    .logo {
        width: 550px;
        height: auto;
    }

    .content-contacts {
        margin-top: 30px;
    }

    .content-header h1 {
        font-size: 2rem;
    }

    .content-header h5 {
        margin-top: -3px;
    }
}

@media only screen and (max-width: 1024px) {
    body {
        background-position: center center;
        background-size: cover;
    }

    .comingsoon {
        height: 100dvh;
        padding: 0;
    }

    .content-header h1 {
        width: 70%;
    }

    .content-header h5 {
        margin-top: -3px;
    }
}

@media only screen and (max-width: 480px) {
    .comingsoon {
        height: auto;
        padding: 30px 0;
    }

    .logo {
        width: 90%;
        height: auto;
    }

    .content-header h1 {
        width: 100%;

        font-size: 1.8rem;
    }

    .content-header h5 {
        width: 80%;

        font-size: 1.1rem;

        text-align: center;
        margin-top: 0;
    }

    .btn {
        font-size: 0.8rem;
    }

    .content-footer {
        margin-top: 40px;
    }
}
