﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFCF6;
    color: #543E33;
    font-family: 'Arial', sans-serif;
}

.content {
    text-align: center;
}

.logo {
    max-width: 35vw;
    height: auto;
}

.coming-text {
    font-size: 50px; /* big font */
    font-family: 'Great Vibes', cursive;
    text-align: center;
    margin-top:30px;
    color: #543E33;
    line-height: 1.2;
    word-spacing: 8px;
}

@media (max-width: 600px) {
    .coming-text {
        font-size: 2rem;
    }
}
