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

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

header > img{
  width: 12em;
  height: 12em;
  object-fit: cover;
  border-radius: 100%;
  border: 8px solid black;
  box-shadow: rgb(28, 32, 93 / 24%) 0px 2px 8px 0px;
}

header > h1{
  display: inline-block;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 1em;
  background-color: #fff;
  color: #000;
  padding: 0.3em 0.6em;
  border: 3px solid lightgray;
}

ul{
  box-sizing: border-box;
  list-style: none;
  margin: 0 auto;
  padding: 2em;
  text-align: center;
  width: 50em;
}

ul > li{
  background-color: #fffa;
  opacity: 75%;
  border-radius: 10em;
  padding: 1em;
  margin: 1.4em 0;
  box-shadow: rgb(28 32 93/ 24%) 0px 2px 8px 0px;
}

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

a{
  color: black;
  text-decoration: none;
}

footer > div > a{
  color: gray;
  text-decoration: none;
  padding: 3px;
}

#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;
}

#myfooter{
  height: 2em;
  padding: 1em;
  margin-top: 0em;
  color: white;
  text-align: center;
}

@media (max-width: 600px){
  ul{
    width: 20em;
    padding-bottom: 0;
  }
  #myfooter{
    display: none;
  }
}
