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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.otto-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .otto-image {
        max-width: 300px;
    }

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