@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Faculty+Glyphic&display=swap');
html {
    background: linear-gradient(to bottom, #28567b, #323232 100vh);
}
body {
    text-align: center;
    color: #fff;
    font-family: 'Carter One', sans-serif;
    height: 100vh;
}

h1 {
    margin: 20px 0;
    font-family: 'Faculty Glyphic', sans-serif;
    font-size: 64px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 20px;
    padding: 10px;
}

.calendar-card {
    background: #3c1a199e;
    border: 2px solid #471d1d;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: #fff;
}

.calendar-card:hover {
    transform: scale(1.05);
}

.calendar-card p {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
    color: #d88b00;
}

.countdown {
    margin-top: 10px;
    font-size: 16px;
}

.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1em;
    user-select: none;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100dvh);
    }
}

.snowman-1 {
    position: fixed;
    bottom: -128px;
    right: -144px;
    z-index: 1000;
    transform: rotate(-45deg);
    width: 256px;
    transition: all 0.5s ease-in-out;
}

.snowman-1:hover {
    bottom: -64px;
    right: -72px;
    transition: all 0.5s ease-in-out;
}

.snowman-2 {
    position: fixed;
    width: 256px;
    bottom: -128px;
    left: -144px;
    z-index: 1000;
    transform: rotate(45deg);
    transition: all 0.5s ease-in-out;
}

.snowman-2:hover {
    bottom: -64px;
    left: -72px;
    transition: all 0.5s ease-in-out;
}