body {
    background: #3e2e21;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

#home {
    position: fixed;
    top: 25px;
    left: 25px;
    height: 75px;
    width: 75px;
    border-radius: 100%;
    border: 3px solid #3A3A3A;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    opacity: 0.5;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home:hover {
    transition: 1s ease-in-out;
    transform: rotate(360deg);
    opacity: 1;
}

#home svg {
    width: 28px;
    height: 28px;
}

.game-wrapper {
    text-align: center;
}

canvas {
    display: block;
    margin: 20px auto;
    border: 6px solid #ac8e68;
    border-radius: 20px;
    cursor: crosshair;
    width: 800px;
    height: 500px;
    box-shadow: 0 10px 0 #5f4a33, 0 10px 20px black;
}

p {
    color: #f7e9d7;
    font-size: 2.2rem;
    text-shadow: 3px 3px 0 #4a3729;
    background: #b98a5f;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    border: 4px solid #7b5f47;
    margin-bottom: 0;
}