body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #ffffff;
  position: relative;
  background: transparent;
}

body{
  background: url(/assets/img/bg.jpg) top right no-repeat ;
  background-size:cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vb;
  z-index: -1;
}

main {
  position: relative;
  opacity: 0;
  filter: blur(10px); 
}

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

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

header > h1 {
  display: inline-block;
  font-size: 0.9em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  border-radius: 1em;
  background-color: rgba(0, 0, 0, 0.418);
  padding: 0.2em 0.6em;
}

p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 1rem;
}

ul {
  box-sizing: border-box;
  list-style: none;
  max-width: 480px;
  margin: 0 auto;
  padding: 0.1em;
}

ul > li {
  background-color: #fffa;
  backdrop-filter: blur(5px) saturate(100%) contrast(100%);
  -webkit-backdrop-filter: blur(5px) saturate(160%) contrast(180%);
  border-radius: 5em;
  padding: 1em;
  margin: 1em 0;
  box-shadow: rgb(28, 32, 93 / 24%) 0px 2px 8px 0px;
}

ul > li:hover {
  transform: scale(1.1);
}

ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  font-size: 20px;
}

#vanta {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.credits {
  text-align: right;
  position:fixed;
  padding: 10px;
  right: 0;
  left: 0;
  bottom: 25px;
  font-size: 13px;
  color: #fff;
  z-index: 99999;
}

@media (max-width: 700px) {
  .credits {
    text-align: center;
    padding: 0;
    bottom:2%;
  }
}

.credits a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.credits a:hover {
  color: #0fe745;
}