* {
  margin: 0;
  padding: 0;
}

body {
  background: url(./assets/background.png) no-repeat top center;
  background-size: 100vw 100vh;
}

body * {
  font-family: "Pixelify Sans", sans-serif;
  color: black;
}

#container {
  width: 360px;
  /*border: 1px solid red;*/
  margin: 70px auto 0px auto;
}

#perfil {
  text-align: center;
}

#perfil img {
  width: 80px;
  margin: auto;
}

#perfil p {
  font-weight: 500;
  line-height: 40px;
  font-size: 50px;
  color: #fefc51;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

ul li a {
  font-size: 17px;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 16px 24px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}

ul li a:hover {
  border: 1.5px solid rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.4);
}

#titulo {
  text-align: center;
  font-size: 12px;
  padding: 8px;
  margin-top: 20px;
}

#texto {
  text-align: center;
  font-size: 7px;
  padding: 10px;
  margin-bottom: 25px;
}

#icons {
  justify-content: center;
  display: flex;
  gap: 16px;
  padding: 24px 0;
  font-size: 30px;
}

#icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
}

#icons a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

#textof {
  text-align: center;
  margin-top: 50px;
  font-weight: 500;
  font-size: 15px;
}
