@font-face {
    font-family: 'font';
    src: url('../Assets/Fonts/Henry.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.fontload {
    visibility: hidden;
    position: absolute;
    left: -9999px;
    font-family: 'font', ui-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: linear-gradient(180deg, #87ceeb 0%, #e0f6ff 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(3px 3px at 20px 30px, white, rgba(255,255,255,0)),
            radial-gradient(3px 3px at 60px 70px, white, rgba(255,255,255,0)),
            radial-gradient(2px 2px at 50px 50px, white, rgba(255,255,255,0)),
            radial-gradient(2px 2px at 130px 80px, white, rgba(255,255,255,0)),
            radial-gradient(3px 3px at 90px 10px, white, rgba(255,255,255,0)),
            radial-gradient(2px 2px at 150px 120px, white, rgba(255,255,255,0)),
            radial-gradient(3px 3px at 180px 60px, white, rgba(255,255,255,0)),
            radial-gradient(2px 2px at 40px 150px, white, rgba(255,255,255,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: snowfall 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes snowfall {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 200px;
    }
}

#game-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

#game-container {
    width: 800px;
    height: 600px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    border: 9px solid darkslateblue;
    box-sizing: content-box;
}