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

h1 {
    color: #3b5b92;
}

h2 {
    color: #c44d58;
}

#stairs-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    position: relative;
    margin: 20px auto;
    width: 120px;
    height: 400px;
    border-left: 8px solid black;  
    border-right: 8px solid black; 
    position: relative;
}

.stair {
    position: absolute;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: black;
}

#stick-figure {
    position: absolute;
    width: 50px;
    bottom: 0;  
    left: 50%;
    transform: translateX(-50%);
    transition: bottom 0.3s ease-in-out;
}