body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f3f4f6;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6347; /* Tomato color */
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.notify-form input {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 0.5rem;
}

.notify-form button {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border: none;
    background: #ff6347;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.notify-form button:hover {
    background: #e5533d;
}

.countdown {
    margin-bottom: 1.5rem;
}

#countdown-timer {
    font-size: 1.2rem;
    font-weight: bold;
}
