body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fff;
}

.coming-soon-container {
    text-align: center;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
}

.logo {
    max-width: 200px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2em;
    color: #333;
}

p {
    font-size: 1.3em;
    color: #555;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.time {
    background-color: #333;
    color: white;
    padding: 10px;
    border-radius: 5px;
    min-width: 80px;
    text-align: center;
}

.time span {
    display: block;
    font-size: 2em;
}