* {
  margin: 0;
  padding: 0;
}

body {
  margin: 1rem;
  background-color: ghostwhite;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

i {
  color: grey;
}

p {
  font-family: "Helvetica", "Arial", san-serif;
  margin-bottom: 0.2rem;
}

.center-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

footer {
  margin: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
}

img {
  max-height: 30rem;
  max-width: 50rem;
}

@media screen and (max-width: 480px) {
  img {
    max-height: 20rem;
    max-width: 20rem;
  }
}
