:root {
    --bg-color: #fcfcf7;
    --text-color: #000000;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 40px 40px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 1rem;
}

.logo {
    width: 250px;
    height: auto;
    display: block;
}

.text-content {
    text-transform: uppercase;
}

.coming-soon {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

@media (max-width: 600px) {
    .logo {
        width: 180px;
    }

    .coming-soon {
        font-size: 2.5rem;
    }

    .brand-name {
        font-size: 1.2rem;
    }
}