body {
    background-color: #cfd0d0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
}

h1 {
    font-family: fantasy;
    font-size: 1.8rem;
    color: #e31521;
    text-align: center;
}

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 150px;
  height: 100vh;
  align-items: center;
  justify-items: center;
  background-color: #d3d3d3;
}


.box {
    height: 200px;
    width: 200px;
    background-color: #2b2d2c;
    padding: 4% 4%;
    border: 0;
    border-radius: 50px;
}

.img {
    color: #e31521;
}

.end {
  background-color: red;
  opacity: 0.8;
}

.clicked {
  box-shadow: 0 0 20px white;
  background-color: grey;
}

.hide {
    display: none;
}

.start {
    padding: 10px 20px;
    border: 0px;
    border-radius: 20px;
    background-color: #2b2d2c;
    color: #e31521;
    font-family: fantasy;
    font-size: 1.5rem;
}

.canvas {
  width: 220px;
  height: 220px;
  background-color: #1e1e1e;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
