body {
  font-family: "Open Sans", "Calibri", sans-serif, Helvetica;
  background-color: #191a1b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  font-weight: bold;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: #fff;
  font-size: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}

img {
  height: 200px;
  width: 200px;
  transition: transform 0.2s;
}

img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* Media Queries to make the website responsive */
@media only screen and (max-width: 767px) {
  /* Style for smaller screens */
  a {
    font-size: 27px;
  }
  img {
    height: 200px;
    width: 200px;
  }
}

@media only screen and (max-width: 576px) {
  a {
    font-size: 20px;
  }
  img {
    height: 150px;
    width: 150px;
  }
}
