*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
    height: 1100px;
    min-width: 1000px;
}

body {
    font-family: Roboto, Helvetica, 'Open Sans', sans-serif;
    background-color: #cccccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    background-image: url("../images/eas2.png");
    background-position: center center;
    background-repeat: no-repeat;
}

button {
    height: 100px;
    width: 100px;
    font-size: 24px;
    font-weight: bold;
    background-color: blue;
    color: white;
    border-radius: 50%;
    margin: 0 20px;
}

#container {
    margin-top: 150px;
    display: flex;
    width: 800px;
    height: 800px;
    flex-wrap: wrap;
    flex: 0 0 auto;
    gap: 0px;
    align-content: center;
}

.bgWhite {
    background-color: white;
}

.bgBlack {
    background-color: black;
}

#buttons {
    width: 1000px;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}