body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: gray;
  color: white;
  /*background: url(./images/fundo.png) repeat center center fixed;*/
  background: rgb(96, 38, 84); /* Cor RGB para #602654 */
  /* Removido o fundo da imagem */
  background-size: cover;
}

#vanta {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main {
  position: relative;
}

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

header > a,
header a > img {
  border-radius: 50%;
}

header a > img {
  width: 6em;
  height: 6em;
  border: 1px solid #fff;
  box-shadow: rgb(28 32 93 / 24%) 0px 2px 80px 0px;
  transition: transform 1s;
}

header a > img:hover {
  transform: rotate(360deg);
}

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

header > h1 > a {
  color: #fff;
}

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

ul > a > li {
  background-color: #fff8;
  backdrop-filter: blur(10px) saturate(260%) contrast(180%);
  -webkit-backdrop-filter: blur(10px) saturate(260%) contrast(180%);
  border-radius: 10em;
  padding: 1em;
  margin: 1.4em 0;
  box-shadow: rgb(28 32 93 / 24%) 0px 2px 80px 0px;
  transition: background 300ms;
}

ul > a > li:hover {
  background-color: #01c8cf58;
  backdrop-filter: blur(10px) saturate(260%) contrast(180%);
  -webkit-backdrop-filter: blur(10px) saturate(260%) contrast(180%);
}

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

a {
  color: #000;
  text-decoration: none;
}
