:root {
    --bg-color: #faf7f0;
    /* Warmer, linen-like background */
    --text-color: #4a4a4a;
    /* Neutral dark gray */
    --font-main: 'Zen Maru Gothic', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    /* Fallback */
    background-image: linear-gradient(rgba(250, 247, 240, 0.6), rgba(250, 247, 240, 0.6)), url('bg.png');
    /* Tone down with warm overlay */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.8;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    /* Bold */
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    opacity: 1;
    /* Remove opacity to help it pop */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1), -1px -1px 0 rgba(255, 255, 255, 0.5);
    /* Float effect */
}

.message {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

.delay-1 {
    animation-delay: 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .logo {
        margin-bottom: 2rem;
    }

    .message {
        font-size: 1rem;
    }
}