/*
Theme Name: Twenty Twenty Child
Template: twentytwenty
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

p {
    font-size: 17px;
}

.main-wrapper {
    background-image: url(images/coming-soon.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    height: 100vh;
    position: relative;
}

.content {
    text-align: center;
    color: white;
    position: relative;
}

.content h1 {
    font-size: 93px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 8px 2px 9px rgb(0 0 0 / 20%);
    font-weight: 700;
}

.content .launch-para {
    max-width: 245px;
    margin: 45px auto 25px;
    font-size: 21px;
}

.content form {
    max-width: 530px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 10px 10px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.content form input[type="email"] {
    border: 0;
    outline: 0;
    width: 100%;
    padding-inline: 10px;
    color: #716969;
    font-size: 16px;
}

.content form input[type="submit"] {
    background-color: #1A1ACA;
    font-size: 16px;
    border-radius: 8px;
    border: 0;
    padding: 12px 25px;
    color: white;
}

@media (max-width:1024px) {
    .main-wrapper {
        background-position: left;
        align-items: flex-start;
        padding-top: 50px;
    }

    .main-wrapper:before {
        content: '';
        inset: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: #000000b3;
    }

    .content h1 {
        font-size: 70px;
    }
}

@media (max-width:767px) {
    .content {
        padding-inline: 25px;
    }

    .content h1 {
        font-size: 40px;
    }

    .content .launch-para {
        font-size: 18px;
        margin: 25px auto 25px;
    }
    .logo{
        max-width: 230px;
        width: 100%;
    }

}