@font-face {
  font-family: "Papyrus";
  src: url("papyrus.ttf");
}

body {
  text-align: center;
  z-index: 0;
  position: relative;
}

#bg {
  position: fixed;
  inset: 0;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
}

h1, h2, a {
  font-family: Papyrus;
  font-weight: none;
}

.title {
    width: 800px;
    margin-top: 15px;
}

hr {
  border: none;
  border-top: 2px solid darkgrey;
  width: 2200px;
  margin: 20px auto;
}

.button {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.button a {
  display: flex;
  opacity: 0.8;
  background-color: white;
  flex-direction: column;
  align-items: center;
  width: 180px;;
  padding: 20px;
  border: 2px solid black;
  border-radius: 15px;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.button a img {
  width: 90px;
  height: 90px;
}

.button a p {
  font-size: 20px;
  margin: 8px 0 0 0;
}

.button a:hover {
  opacity: 1;
  background-color: lightgrey;
}