body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background-color: #222222;
    color: #F9F9F7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

.container {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}


.logo img {
    height: 80px;
    margin-bottom: 2rem;
}

.messages p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.countdown div {
    background-color: #333;
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
}

.countdown p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.countdown .day,
.countdown .hour,
.countdown .minute,
.countdown .second {
    font-size: 3rem;
    font-weight: 700;
}

.icon-container {
    margin-top: 2rem;
}

.countdown-icon {
    width: 100px;
    height: 100px;
}

.highlight-message {
    text-decoration: underline;
    font-size: 2rem; /* Increased font size */
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .logo img {
        height: 60px;
    }

    .messages p {
        font-size: 1.2rem;
    }

    .highlight-message {
        font-size: 1.5rem;
    }

    .countdown {
        flex-direction: column;
        gap: 1rem;
    }

    .countdown div {
        min-width: unset;
        width: 100%;
    }
}

.button-container {
    margin-top: 2rem;
}

.pack-button {
    display: inline-block;
    background-color: #F9F9F7;
    color: #222222;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.pack-button:hover {
    background-color: #333;
    color: #F9F9F7;
}

footer {
    background-color: #333;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}
