body {
  margin: 0;
  height: 100dvh;
  display: grid;
  place-content: center;
  img {
    max-width: 90%;
    margin-inline: auto;
  }
  .links {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    & a {
      font-size: 22px;
      margin-bottom: 5px;
      color: black;
      text-decoration-thickness: 2px;
      text-underline-offset: 2px;
      transition: opacity 0.25s;
      &:hover {
        opacity: 0.75;
      }
    }
  }
}
