body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; 
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 50vw;  /* Adjust based on your logo size */
    max-width: 600px; /* Prevents the logo from becoming too large on wider screens */
    height: auto; /* Maintains the aspect ratio */
}

.stay-tuned, .error-message {
    margin-top: 40px;
    color: #000000;
    font-size: 24px;
}

.home-link {
    margin-top: 10px;
    color: #D16666;
    text-decoration: none;
    border-bottom: 1px solid #D16666;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.home-link:hover {
    color: #F9DC5C;
}
