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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;

    align-content: center;
    height: 100vh;
    overflow: hidden;
}

.content {
    display: flex; /* Enable flexbox */
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    height: 100vh; /* Full viewport height */
    text-align: center; /* Center text alignment */
    flex-direction: column; /* Stack items vertically */
}

.logo {
    height: auto;
    width: 90%;
    max-width: 800px;
}

.opening-soon {
    font-family: Verdana, sans-serif;
    font-size: 3rem; /* Adjust text size here */
    color: #555;
    text-align: center;
    margin: 0.5rem 0; /* Adjust spacing around the text */
}