body {
    background-color: #c58f78;
    display: flex; /* Makes the body a flex container */
    align-items: flex-start; /* Aligns the container to the top */
}
.container {
    display: flex; /* This sets up the flex container */
    align-items: flex-start; /* Centers items vertically */
    padding: 20px; /* Adds some padding around the container */
    gap: 20px; /* Adds space between canvas and button */
}
canvas {
    background-color: #be704f;
    border: 3px solid black;
    border-radius: 4px;
    margin: 5px;
    width: 1000px;
    height: 500px;
}
button {
    background: #be704f;
    border: none;
    border-radius: 50px;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.75s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

button:hover:before {
    transform: translate(-50%, -50%) scale(1);
}

button:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}
button:active {
    background: linear-gradient(45deg, #d88e6c, #9e5136);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
    transition: all 0.1s ease;
}





.level {
    font-size: 20px;
    margin-top: 10px;
}