body {
    height: 100vh;
    background-color: hsl(234, 29%, 20%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

button {
    cursor: pointer;
}

.main-container {
    display: flex;
    background-color: white;
    border-radius: 26px;
    padding: 20px;
    gap: 20px;
}

.content {
    padding: 10px 20px;
}


h1 {
    font-size: 3.5em;
    word-spacing: 5px;
    color: hsl(235, 18%, 26%);
    font-weight: 900;
}


.introduction-section>p>img {
    position: relative;
    top: 5px;
    margin-right: 10px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

label {
    font-size: 14px;
    color: hsl(235, 18%, 26%);
    font-weight: 900;
}

input[type=email] {
    border-radius: 5px;
    height: 40px;
    border: 1px solid rgb(197, 187, 187);
    padding: 5px 15px;
    margin: 10px 0px 30px 0px;
}

button {
    background-color: hsl(235, 18%, 26%);
    color: white;
    border-radius: 8px;
    padding: 20px;
    border: none;
}

.confirm-button {
    background-color: hsl(233, 30%, 11%);
    width: 100%;
}

.confirm-button:hover {
    background: linear-gradient(to right, #ff066ac2, #fc4a5a, #f75040);
    cursor: pointer;
    box-shadow: 0px 10px 30px 1px #f75040;
}

@media (max-width:1000px) {
    body {
        margin: 0px;
        padding: 0px;
    }

    .main-container {
        flex-direction: column-reverse;
        padding: 0px;
        gap: 0px;
        box-sizing: border-box;
    }

    h1 {
        font-size: 3em;
    }

    .content {
        padding: 20px;
    }

    .banner>img {
        width: 100%;
    }
}

@media (max-width:400px) {
    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 12px;
    }

}