#box{
    border:1px solid black;
    box-sizing: border-box;
}
.container{
    display:flex;
    flex-wrap: wrap;
    width:500px;
    height: 500px;

}

.layout{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    padding-top: 0px;
}

.controls{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    font-size: 20px;
    gap: 5px;
}

li{
    list-style: none;
    margin: 5px 0;
}

h3{
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: rgb(207, 243, 243);
    margin: 0px;
}