:root {
    --background-color: #ffffff;
    --light-font-color: #666;
    --slogan-font-color: #444;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: var(--background-color);
    color: #111111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
}

.logo {
    margin-bottom: 32px;
}

.logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

h1 {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 12px 0;
}

h2 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 28px 0;
    color: var(--slogan-font-color);
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.soon {
    font-size: 15px;
    color: var(--light-font-color);
    letter-spacing: 0.05em;
    opacity: 0.85;
    font-weight: 500;
    text-transform: uppercase;
}

footer {
    font-size: 11px;
    padding: 24px 16px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.5);
}

footer a {
    color: var(--light-font-color);
    text-decoration: underline;
}

@media (max-width: 600px) {
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 16px;
    }
}