/* Basic reset */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Helvetica', Arial, sans-serif;
    background: linear-gradient(to bottom, #ffefeb, #ffebf0); /* Soft red-pink gradient for warmth */
    color: #333333; /* Neutral text color for readability */
    text-align: center;
    position: relative;
}

/* Main content */
h1 {
    font-size: 40px;
    font-weight: 700;
    color: #d62828; /* Festive red for heading */
    margin-bottom: 20px;
    font-family: 'Mountains of Christmas', cursive; /* Holiday-themed font */
}

p {
    font-size: 18px;
    font-weight: 300;
    color: #333333;
    margin: 10px 0;
}

/* Highlight important text in green for Christmas */
.highlight {
    color: #006400; /* Christmas green */
}

/* Countdown style */
.countdown {
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    padding: 10px 20px;
    color: #333333;
    background-color: #e8f5e9; /* Soft green background */
    border-radius: 5px;
    border: 2px solid #006400; /* Green border for Christmas touch */
}

/* Links at the bottom */
.links {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 30px;
}

.links a {
    font-size: 18px;
    font-weight: 400;
    color: #006400; /* Christmas green */
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.links a:hover {
    color: #d62828; /* Festive red hover effect */
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Animated snowflakes */
.snowflake {
    position: absolute;
    width: 30px;
    height: auto;
    animation: fall 5s infinite linear;
    opacity: 0.8;
}

.snowflake:nth-child(1) {
    top: -10%;
    left: 20%;
    animation-duration: 6s;
    animation-delay: 0s;
}

.snowflake:nth-child(2) {
    top: -10%;
    left: 50%;
    animation-duration: 7s;
    animation-delay: 1s;
}

.snowflake:nth-child(3) {
    top: -10%;
    left: 80%;
    animation-duration: 5s;
    animation-delay: 2s;
}

/* Animation for falling snowflakes */
@keyframes fall {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(110vh);
    }
}

/* Christmas tree in the corner */
.tree {
    position: absolute;
    bottom: 20px;
    left: 10px;
    width: 100px;
    height: 150px;
    background: url('christmas-tree.png') no-repeat center;
    background-size: contain;
}

/* Ornament for decoration */
.ornament {
    position: absolute;
    bottom: 50px;
    right: 20px;
    width: 50px;
    height: auto;
    animation: wiggle 2s infinite ease-in-out;
}

/* Ornament wiggle animation */
@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}
