/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #f8f4ea;

    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

/* Main Container */

.coming-soon {
    width: 90%;
    max-width: 700px;

    text-align: center;

    padding: 40px 20px;
}

/* Logo */

.logo {
    width: 100%;
    max-width: 350px;
    height: auto;

    margin-bottom: 40px;
}

/* Coming Soon */

h1 {
    font-size: 2rem;
    font-weight: 400;

    letter-spacing: 6px;
    text-transform: uppercase;

    margin-bottom: 20px;
}

/* Description */

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Decorative Divider */

.divider {
    width: 50px;
    height: 2px;

    background-color: #c7a34b;

    margin: 30px auto;
}

/* Website */

.website {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

/* Mobile */

@media (max-width: 600px) {

    .logo {
        max-width: 260px;
    }

    h1 {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    p {
        font-size: 1rem;
    }
}