body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Arial', Sans-serif;
    background: #333;
    color: white;
    text-align: center;
}

.content {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10em;
}


.content h1 span, .content h2 span {
    display: inline-block; /* Allows applying margin and transform to inline elements */
    margin: 0 2px; /* Adjust the space between letters */
}

.content h1 span:nth-child(odd), .content h2 span:nth-child(odd) {
    color: red; /* Color for odd letters */
}

.content h1 span:nth-child(even), .content h2 span:nth-child(even) {
    color: green; /* Color for even letters */
}

.snowflake {
    position: absolute;
    top: -10px;
    background-image: url('images/snowflake.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    opacity: 0.8;
  /*  will-change: transform;*/
}

#santa-image {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px; /*adjust the size here as needed */
    height: auto;
}

#header {
    
    width: 100%;
    height: 100%;
    background-image: url('images/icicle.png');
    background-repeat: repeat-x;
    background-position: top;
    background-size: auto 100px;
} 
    
@keyframes fall1 {
    0% { transform: translateY(-10px); }
    100% { transform: translateY(100vh); }
}

@keyframes fall2 {
    0% { transform: translateY(-10px); }
    100% { transform: translateY(100vh); }
}

@media (max-width: 768px) {
    .content {
    top: 25%;
    left: 50%;
        font-size: 1.2em;
    }   
    .content h1, .content h2 {
        font-size: 8em;
    }
    #santa-image {
        max-width: 100%;
        height: auto;
    }
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 0.8em;
}
/* ... (you can add more keyframes for more sets if needed) */
