/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
  .button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top: 10px;
  max-width: 350px;
}

  .button-grid img {
  display: block;
  box-shadow: 0 0 8px 2px rgba(63, 53, 67, 0.299);
}
   .divider {
  display: block;
  margin: 5px auto;
  width: 350px;
}
body {
  background-color: #403154;
  color: black;
  font-family: Verdana;
}
   .divider2 {
  display: block;
  margin: 5px auto;
  width: 500px;
}
  .icon-large {
  transform: scale(1.5);
}