body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333;
    color: #fff;
    text-align: center;
}

.coming-soon-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 100px; /* Increased padding */
    border-radius: 10px;
}

.coming-soon-image {
    max-width: 150%; /* Adjusted image size */
    height: auto;
    margin: 40px 0 20px 0;
}

h1 {
    font-size: 100px; /* Increased font size */
    margin: 40px 0 20px 0;
}

p {
    font-size: 40px; /* Increased font size */
}

