html, body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #412229;
  background-image: url(./background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;

  place-content: center;
}

.catalog {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2em;

  padding-top: 2em;
  padding-bottom: 2em;

  place-self: center;
  place-content: center;
}

a {
  flex: 0 0 0;
  font-size: 2em;
  font-family: cursive;
  font-weight: bold;
  display: block;
  padding: 1em;
  border: 1px solid grey;
  border-radius: 1em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  text-align: center;
  text-wrap-mode: nowrap;
  text-decoration-line: none;
  text-shadow: 0 0 0.5em black;
  -webkit-text-stroke: 1.5px black;
}

a:hover {
  box-shadow: 0 0 1em #ccc;
}
