html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background-color: beige;
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  flex-grow: 1;
  width: min(50rem, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

footer a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
  font-size: 1rem;
  opacity: 0.4;
}

footer a:hover,
footer a:focus-visible {
  opacity: 1;
}

footer img {
  height: 1.5em;
  width: auto;
}

a {
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
}