body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('background-image.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
}

.coming-soon {
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.coming-soon p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

