* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Fredoka One", cursive;
  color: #5b5b5b;
  height: 100%;
}
.container {
  text-align: center;
}
#scoreLabel {
  margin-top: 20px;
}
.alertBox {
  font-family: "Montserrat";
  font-weight: 600;
  background-color: #563883;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 10px;
  display: none;
}
.alertBox.active {
  display: inline-block;
}
#header {
  background-image: url(/images/intro2.png);
  background-repeat: no-repeat;
  background-color: #ffffff;
  background-size: cover;
  width: 100%;
  height: 150px;
  text-align: center;
}
#title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;

  font-size: 3rem;
  color: #6d72ce;
}

.image {
  width: 100px;
  height: 100px;

  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

#grid {
  width: 400px;
  margin: 0 auto 50px auto;
  display: grid;
  grid-template-columns: repeat(4, 100px);
  grid-template-rows: repeat(3, 100px);
  row-gap: 10px;
  column-gap: 10px;
}
