main {
  background-color: var(--light-background);
  font-family: Arial, sans-serif;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
  margin: 0;
  text-align: center;
}

main img {
  height: 10rem;
}

h1 {
  margin: 1rem;
  font-size: 2rem;
}

p {
  margin: 1rem 0;
}

main a {
  color: #555;
  text-decoration: none;
  font-weight: bold;
}

main a:hover {
  text-decoration: underline;
}

strong{
  font-weight:900;
}

@media (max-width: 600px) {
  main {
    padding: 1rem;
    height: auto;
  }

  main img {
    height: auto;
    max-width: 100%;
  }

  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  main a {
    font-size: 1rem;
  }
}

