body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  background-color: #23153c;
}

#vanta {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

main {
  position: relative;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 2s ease-in-out, filter 2s ease-in-out;
}

header {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header > img {
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  border: 2px solid #7272b9;
  box-shadow: rgb(28 32 93 / 24%) 0 2px 8px 0;
}

header > h1 {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 1rem;
  background-color: #7272b9aa;
  padding: 0.4rem 0.6rem;
  border: 1px solid #fffa;
}

ul {
  box-sizing: border-box;
  list-style: none;
  margin: 0 auto;
  padding: 2rem;
  max-width: 480px;
}

ul > li {
  background-color: #fffa;
  border-radius: 10rem;
  padding: 1rem;
  margin: 2rem 0;
  box-shadow: rgb(28 32 93 / 24%) 0 2px 8px 0;
  transition: all 0.3s ease 0s;
}

ul > li > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

ul > li:hover {
  background-color: #7272b9;
  box-shadow: rgba(195, 195, 195, 0.24) 0 2px 16px 0;
  color: #fff;
  transform: translateY(-7px);
}

a {
  color: #23153c;
  text-decoration: none;
  font-weight: 600;
}
