body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f5f5ed;
}

h1 {
    color: #5d7f82;
}

button {
    padding: 10px;
    margin: 10px;
    border: none;
    background-color: #5d7f82;
    color: white;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

button:hover {
    background-color: #446161;
}

#stairContainer {
    position: relative;
    margin: 20px auto;
    width: 160px; /* Reduced width to match screenshot */
    height: 400px;
    border-left: 5px solid black;
    border-right: 5px solid black;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

#stairs {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stair {
    width: 100px; /* Adjusted to match vertical lines */
    height: 10px; /* Thin stairs */
    background-color: black;
    position: absolute;
    left: 50%; /* Centering */
    transform: translateX(-50%);
}

#stickFigure {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Center the stick figure */
    width: 30px; /* Adjusted size to fit better */
}
