html {
    height: 100%;
}

body {
    font-family: "Heebo", sans-serif;
    margin: 0;
}

.coming-soon {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/coming-soon.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-family: Chiller;
    text-align: center;
    width: 98.5%;
    font-size: 70px;
    margin: 30px auto 0;
}

.description {
    font-size: 20px;
    width: 98.5%;
    margin: 10px auto;
    line-height: 30px;
}

@media screen and (max-width: 420px) {
    .description {
        font-size: 15px;
        line-height: 25px;
    }

    .title {
        font-size: 50px;
    }
}

@media screen and (max-width: 220px) {
    .title {
        font-size: 35px;
    }
}