#mycanvas {
    border: 1px solid darkred;
    background: linear-gradient(
            to bottom,
            #0b1a33 0%,
            #081427 45%,
            #050d1a 100%
    );
}
body {
    margin: 0;
    padding: 0;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    font-family: Arial, sans-serif;
}

#canvas-container {
    position: relative;
    width: 650px;
    height: 400px;
}
#mycanvas {
    display: block;
    border: 1px solid darkred;
    background: linear-gradient(
            to bottom,
            #0b1a33 0%,
            #081427 45%,
            #050d1a 100%
    );
}
#snowCanvas {
    top: 0;
    left: 0;
}
.button-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
input[type="button"] {
    margin: 4px;
    padding: 6px 12px;
    background-color: #1b2a4a;
    color: white;
    border: 1px solid #334d7a;
    border-radius: 4px;
    cursor: pointer;
}
input[type="button"]:hover {
    background-color: #263b66;
}

.card-title {
    position: absolute;
     top: 25px;      
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: DarkBlue;
    font-family: "Georgia", serif;
    pointer-events: none;
}
footer {
    text-align: center;
    padding: 20px;
    background: white;
    color: black;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
