* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    max-width: 100vw;
    height: 100vh;
    background: rgb(190, 221, 159);
    font-family: monospace;
    color: white;
    display: flex;
    flex-wrap: wrap;
}





.container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    width: 20%;
    height: 33.33%;
}

.figure {
    position: relative;
    top: 20px;
}

.face {
    position: absolute;
    top: -44px;
    left: -10px;
}






.box {
    padding: 20px;
    background-color: rgb(92, 157, 103);
    font-size: 15px; 
    height: 20vh;
    width: 20vw;
    position:fixed;
    top: 50vh;
    right: 0px;
    width: 200px;
    transition: right .5s;
    z-index: 2;
}


.box2 {
    padding: 20px;
    background-color: rgb(55, 115, 65);
    font-size: 15px;
    height: 20vh;
    width: 20vw;
    position:fixed;
    top: 75vh;
    right: 0px;
    width: 200px;
    transition: right .5s;
    z-index: 2;
}

.active {
    right: -200px;
}

.active2 {
    right: -200px;
}

button {
    padding: 7px;
    cursor: pointer;
    border: 0px solid;
    background-color: rgb(218, 86, 86);
    border-radius: 5px;
    transition: background-color .2s;
    font-family: monospace;
    margin: 0 30px;
    color: white;
}

button:hover {
    background-color: pink;
}

button:active {
    background-color: white;
}

.draggable {
    cursor:grab;
}

.button-wrap {
    position: fixed;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
}