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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0d0d21; /* Match the dark background of the image */
    padding: 10px;
}

.container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.coming-soon-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

/* Media query for mobile devices */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    .coming-soon-img {
        border-radius: 4px; /* Slightly smaller border radius on small screens */
    }
}
