body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: monospace;
}

h1 {
  font-size: 40px;
  font-weight: 700;
}

h2 {
  font-size: 30px;
  text-transform: capitalize;
}

h4 span {
  text-align: center;
  background-color: lightskyblue;
}

.container {
  margin: 30px auto 0 auto;
  background-color: #1b1c25;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 400px;
  width: 500px;
  padding: 10px;
  border: 5px solid #000000;
}

.block {
  display: flex;
  height: 170px;
  width: 170px;
  border-radius: 10rem;
  cursor: pointer;
}

.red {
  position: relative;
  right: 50px;
  background-color: red;
}

.green {
  position: relative;
  left: 50px;
  background-color: green;
}

.blue {
  position: relative;
  right: 50px;
  background-color: blue;
}

.yellow {
  position: relative;
  left: 50px;
  background-color: yellow;
}

.wrong {
  background-color: red;
  color: #ffffff;
}
