
body {
    margin: 0;
    padding: 0;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f2f4f8;
}


.card-title {
    position: absolute;
    top: 25px;
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #2b3a67;
    font-family: "Georgia", serif;
    pointer-events: none;
}


#canvas-container {
    position: relative;
    width: 650px;
    height: 400px;
}


#mycanvas {
    display: block;
    border: 2px solid #6a7ba2;
    background: linear-gradient(
            to bottom,
            #1e2a44 0%,
            #24324f 45%,
            #2a3858 100%
    );
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


#snowCanvas {
    position: absolute;
    top: 0;
    left: 0;
}

/* ===== BUTTONS ===== */
.button-container {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

input[type="button"] {
    margin: 5px;
    padding: 7px 14px;
    background-color: #4c6ef5;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

input[type="button"]:hover {
    background-color: #3b5bdb;
    transform: translateY(-1px);
}

input[type="button"]:active {
    background-color: #364fc7;
    transform: translateY(0);
}

