body {
    background-color: #F4F4F2;
    color: #3B3838;
    font-family: 'Inter', sans-serif;
    font-weight: 300;  
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding-bottom: 8em;
    position: relative;
    z-index: 10;
}

body:after {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 8em;
    background-image: url(../bg.svg);
    background-repeat: repeat-y;
    background-size: 100%;
    border-top: 2px solid #D5CEC5;
}

h1 {
    text-align: center;
}

.logo {
    width: 75%;
    margin-left: -3%;
}

h2 {
    font-size: 2em;
    text-align: center;
}

.coming-soon {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 4em;
    color: #FF575D;
}


@media (max-width: 600px) {
    html, body, .content { height: 100% }

    h2 {
        font-size: 1.5em;
    }
    .coming-soon {
        font-size: 2em;
    }
}

@media (max-width: 400px) {
    h2 {
        font-size: 1.3em;
    }
}