/* Make the entire page background white */
body {
    background-color: #ccc;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Styling for the center box */
.box {
    padding: 30px;
    width: 80%;
    max-width: 1000px;
    animation: fadeIn 5s;
}

/* Styling for the "Coming in 2025" text */
.coming-soon-text {
    font-size: 2rem;
    font-weight: bold;
    color: #000;  /* Dark brown color */
}

/* Make sure the image does not overflow */
.img-fluid {
    max-width: 100%;
    height: auto;
    animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}