body {
    margin: 0;
    overflow: hidden;
}

canvas {
    display: block;
    margin: auto;
    background: linear-gradient(to bottom, #3f92ab, #1a5a6d); /* Gradient from sky blue to deeper blue */
    position: relative;
}

/* Create the forest elements */
canvas::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, #2c5b3a, #1a3a24); /* Gradient for forest area */
    z-index: -1;
}

/* Stream (you can adjust the position and size as needed) */
canvas::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30%; /* Adjust this value to position the stream */
    width: 40%; /* Adjust this value to control stream width */
    height: 10px; /* Adjust this value for stream depth */
    background-color: #4da6c7; /* Stream color */
    z-index: -1;
}

button {
    background-color: #9ff0fe;
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    padding: 10px 20px;
    border: 2px dotted #070707;
    cursor: pointer;
}