* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: rgba(27, 25, 25, 0.616);
}

#container {
    display: flex;
    flex-direction: row;
}

#div1,
#div2,
#div3,
#div4 {
    padding: 10px;
    height: 100px;
    width: 100px;
    background-color: bisque;
    margin: 2px;
    border-radius: 10px;
}

#count1,
#count2,
#count3,
#count4 {
    text-align: center;
    font-size: 48px;
    padding-top: 10px;
}