body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
}

.background {
  filter: blur(10px) brightness(0.7);
  background-image: url(assets/logo.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  height: 20%;
  width: 75%;
  gap: 1rem;
}

nav > a {
  display: block;
  height: 100%;
}

nav > a > img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  width: auto;
  height: auto;
}

.wrapper > div {
  display: block;
  text-align: center;
  width: 70%;
  font-size: 1rem;
  margin-top: 50px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 2rem auto;
}

.wrapper > div > span {
  color: #fff;
}