#table-contain {
    width: 600px;
    position: relative;
    flex-wrap: wrap;
    height: 500px;
    top:300px;
    margin: auto;
}

.table {
    position: absolute;
    top: 100px;
    height: 400px;
    width: 600px;
    border: 3px dotted;
}

#left-chair {
    position: absolute;
    top: 200px;
    left: -38%;
    height: 200px;
    width: 200px;
    border: 0px solid;
    margin-top: auto;
    margin-bottom: auto;
    background-color: rgb(219, 219, 219);
    border: 1px solid rgb(14, 12, 11);;
}

#upper-chairs {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 400px;
    height: 200px;  
    width: 600px;
    align-items: center;
    justify-content: center;
}

.chair {
    display: inline-block;
    position: relative;
    flex-direction: row;
    height: 150px;  
    width: 200px;
    background-color: rgb(219, 219, 219);
    border: 1px solid rgb(14, 12, 11);
    margin: 10px;
}

#bottom-chairs {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: -200px;
    height: 200px;  
    width: 600px;
    align-items: center;
    justify-content: center;
}

#right-chair {
    position: absolute;
    top: 200px;
    left: 105%;
    height: 200px;
    width: 200px;
    border: 0px solid;
    margin-top: auto;
    margin-bottom: auto;
    background-color: rgb(219, 219, 219);
    border: 1px solid rgb(14, 12, 11);;
}


