body {
    margin: 0;
    height: 100vh;
    background: #122748;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
}

h1 {
    margin-bottom: 20px;
}

#globe-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    position: relative;
}

#globe-container.shake {
    animation-name: shake;
    animation-duration: 0.6s;
}

#globe {
    width: 100%;
    height: 100%;
    position: relative;
}

.snowflake {
    position: absolute;
    top: -10px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

button {
    margin-top: 25px;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    background: #ffcf5c;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

@keyframes fall {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(320px);
    }
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-3deg);
    }

    40% {
        transform: rotate(3deg);
    }

    60% {
        transform: rotate(-3deg);
    }

    80% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}