body, html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}

body {
  background: url(./images/bg-2-overlay.jpg) no-repeat center center fixed;
  background-size: cover;
}

#vanta {
  z-index: 0;
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
}
main {
  position: relative;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease-in-out, filter 1s ease-in-out;
}

header {
  margin-top: 1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header > img {
  width: 6em;
  height: 6em;
  border-radius: 100%;
  border: 1px solid #fff;
  box-shadow: rgb(28, 32, 93 / 24%) 0px 2px 8px 0px;
}

header > h1 {
  display: inline-block;
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 1em;
  background-color: #000a;
  padding: 0.3em 0.6em;
  border: 1px solid #fffa;
  backdrop-filter: blur(10px) saturate(160%) contrast(180%);
  -webkit-backdrop-filter: blur(10px) saturate(160%) contrast(180%);
}

ul {
  box-sizing: border-box;
  list-style: none;
  margin: 0 auto;
  padding: 2rem;
  max-width: 680px;
}

ul > li {
  background-color: rgb(255, 255, 255);
  border-radius: 10em;

  margin: 1.4em 0;
  box-shadow: 0 0 34px 0 rgba(0,0,0,0.16);
  border-radius: 30px;
  transition: transform 0.1s, box-shadow 0.2s;
  cursor: pointer;
}

ul > li:hover {
  transform: scale(1.03);
  box-shadow: 0 0 34px 0 rgba(0,0,0,0.30);
}

ul > li > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 30px 30px;
}

a {
  color: black;
  font-size: 1.3rem;
  font-weight: 400;
  text-decoration: none;
}