html,
body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", Verdana, Geneva, Tahoma, sans-serif;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  background: url("assets/background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  color: white;
}

header {
  margin-top: 4em;
  text-align: center;
}

header > img {
  height: 8em;
  aspect-ratio: 1/1;
  border-radius: 100%;
  box-shadow: 0px 0px 3em cyan;
  border: 1px #ffff solid;
  object-fit: cover;
}

header > h1 {
  font-weight: bold;
  font-size: 1em;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 1em;
  font-weight: 500;
}

ul > li {
  box-sizing: border-box;
  padding: 1em 5em;
  margin-top: 1em;
  background-color: #fffa;
  backdrop-filter: blur(10px) saturate(160%) contrast(180%);
  -webkit-backdrop-filter: blur(10px) saturate(160%) contrast(180%);
  border: 2px black solid;
  border-radius: 4em;
}

ul > li:hover {
  transition: color ease-in-out;
  transition-duration: 300ms;
  background-color: red;
}

ul > li > a {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-items: center;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

a {
  color: black;
  text-decoration: none;
}

#vanta {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
