@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
* {
    transition: all 0.5s linear;
    font-family: 'Poppins',
    sans-serif;
}

html, body {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    background-color: #050608;
}

.release-soon-text {
    font-size: 11px;
    font-weight: 700;
    color: #B79B6C;
    text-shadow: 0px 1px 1px #00000029;
    text-transform: uppercase;
}

.heading {
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    color: #B79B6C;
    text-shadow: 0px 1px 1px #00000029;
}

.inform-me-text {
    font-size: 12px;
    font-weight: 700;
    color: #B79B6C;
    text-shadow: 0px 1px 1px #00000029;
}

.form-control,
.form-control:focus {
    background: #141517 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    border-radius: 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.19px;
    color: #FFFFFF;
}

.form-control::placeholder {
    color: #FFFFFF;
}

.send-btn {
    display: block;
    cursor: pointer;
    outline: 0 !important;
    width: 99px;
    height: 40px;
    border: 1px solid #FFFFFF;
    background-color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.23px;
    color: #141517;
}

.send-btn:hover {
    background: transparent;
    color: #FFFFFF;
}

.footer {
    font-size: 14px;
    letter-spacing: 0.27px;
    color: #FFFFFFB5;
    position: absolute;
    bottom: 2rem;
    left: 0;
}

.footer a {
    font-size: 14px;
    letter-spacing: 0.27px;
    color: #FFFFFFB5;
}

.footer a:hover {
    text-decoration: none;
    color: #FFFFFF;
}

.container {
    height: 100vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.contents {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    left: 0;
    width: 100%;
}

@media (max-width: 991.98px) {
    .container {
        height: auto;
    }

    .contents {
        position: static;
        transform: translateY(0);
        padding-top: 4rem;
    }

    .footer {
        position: static;
        padding-top: 4rem;
    }
}