body {
  background-color: rgb(88, 88, 81);
  text-align: center;
}
h1 {
  color: rgb(255, 53, 53);
  text-shadow: 1px 1px rgb(255, 255, 255);
}
div p {
  color: aliceblue;
  text-shadow: 1px 1px yellow;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 19px;
}
div img {
  width: 50%;
}
.main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  max-width: 100%;
  background-color: rgb(32, 31, 31);
}
