body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #8dc2ff; /* Ljusgrå bakgrund */
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevents scrollbar due to falling snowflakes */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 2; /* Ensures content is above the snowflakes */
    position: relative;
}

.gift-card {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 390px;
}

/* Snowflakes styles */
.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    opacity: 0.8;
    font-size: 1em;
    animation-name: fall;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall {
    0% {top: -10px;}
    100% {top: 100vh;}
}
