
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.background-container {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFD700;
    padding: 1rem;
    box-sizing: border-box;
}

.coming-soon-text {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .coming-soon-text {
        font-size: clamp(1.5rem, 10vw, 3rem);
    }
}
