body {
        width: 100vw;
        height: 100vh;
        background: #fefefe;
        color: #373737;
        margin: 0;
        padding: 0;
        background-color: #000000;

}
* {
        box-sizing: border-box;
        font-family: "Cabin", Arial, sans-serif;
}
.container {
        width: 600px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        margin: 0;
        position: absolute;
        background: #fefefe;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        padding-bottom:30px;
        box-shadow: 5px 10px 40px 0 rgba(0, 0, 0, 0.2);
        border-radius: 5px;
}

.inner-container {
        width: 100%;
}


svg {
        max-width: 90%;
        position: relative;
        left: 5%;
        margin: 0 auto;
}

.bottom {
        text-align: center;
        margin-top: 0em;
        max-width: 70%;
        position: relative;
        margin: 0 auto;
        h2 {
                font-family: "Rokkitt", sans-serif;
                letter-spacing: 0.05em;
                font-size: 30px;
                line-height: 1.2;
                text-align: center;
                margin: 0 auto 0.25em;
        }
        p {
                color: #777;
                letter-spacing: 0.1em;
                font-size: 16px;
                line-height: 1.4;
                margin: 0 auto 2em;
        }
}
.buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;

}

input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box

}
#unsubscribe {
    background-color: #746e62c2; 
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;

  }

  #go-back {
    background-color: #746e62c2; 
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;

  }
#blob-3,
#blob-2,
#mouth-happy,
#mouth-sad,
#eyebrow-happy-left,
#eyebrow-happy-right,
#eyes-laughing,
#open-mouth,
#tongue,
#mouth-scared {
        display: none;
}
@media (max-width: 699px) {
        .container {
                width: 90%;
        }
                .bottom {
                margin-top: 1em;
                        max-width:90%;
        }
}
@media (max-width: 399px) {
        .container {
                padding: 20px;
        }
        .bottom {
                // margin-top: 0em;
                // max-width: 90%;
                h2 {
                        font-size: 24px;
                }
        }
        .buttons {
                flex-direction: column;
                button {
                        margin-right: 0;
                }
        }
        svg {
                padding-top: 0;
        }
}
