html, body {
  margin: 0;
  padding: 0;
  background-color: var(--dark);
  font-family: "Saira";
}

.top {
  display: flex;
  gap: 4rem;
  align-items: start;
  justify-content: start;
  padding: 3rem 2rem;
  background-color: var(--main);
}

.top .backindex {
  color: black;
  font-weight: bold;
  font-size: 2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.backindex img {
  width: 3rem;
}

.middle {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.buttons {
  padding: 2rem;
  background-color: var(--secondary);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.middle .buttons a {
  padding: .5rem 1rem;
  background-color: black;
  color: white;
  text-decoration: none;
  transition: .3s;
}

.middle .buttons a:hover {
  background-color: #222222;
  color: #dddddd;
}

.middle .info {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  color: white;
  margin: 0;
}

.middle .info h1 {
  font-size: 1.4rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 3rem 2rem;
  background-color: var(--main);
}

.footer p {
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0;
}

.footer > div {
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
