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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7; /* Light background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Headings */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    color: #8b0000; /* Deep Red for a classic look */
    margin-bottom: 5px;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.5em;
    font-weight: 300;
    color: #555;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Message Text */
.message {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #666;
}

/* Countdown Section */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 90px;
}

.time-unit span {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #8b0000;
}

.time-unit p {
    font-size: 0.8em;
    text-transform: uppercase;
    color: #777;
    margin-top: 5px;
}

/* Contact Info */
.contact p {
    font-size: 1em;
    margin-bottom: 10px;
    color: #555;
}

.contact a {
    color: #8b0000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    border-bottom: 1px dashed #8b0000;
}

.contact a:hover {
    color: #b30000;
    border-bottom-style: solid;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 1.2em;
    }
    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }
    .time-unit {
        min-width: 70px;
    }
    .time-unit span {
        font-size: 1.8em;
    }
}