@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap");
@import url("https://fonts.cdnfonts.com/css/luna-bar");
@import url("https://fonts.cdnfonts.com/css/beautiful-heart");

* {
  /*border: 1px solid red;*/
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #000;
}

.container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 2.6fr 0.2fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "."
    "."
    ".";
  z-index: 1;
  background-image: url(./bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.icon-tabler-brand-whatsapp {
  margin-right: 30px;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 40px 0 0;
}

.img {
  height: 100px;
  width: 100px;
  background-image: url(./user.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 50px;
}

.title {
  font-size: 22pt;
  color: #fff;
  font-family: "Beautiful Heart", sans-serif;
  letter-spacing: 3px;
}

ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  width: 100%;
}

main ul li {
  display: grid;
  place-items: center;
  border-radius: 30px;
}

main ul li a {
  width: 240px;
  height: 55px;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid #d4af37;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  backdrop-filter: blur(50px);
  z-index: 3;
}

main ul li a:hover {
  background-color: #d4af37;
  color: #000;
}

footer {
  padding: 0 10px;
  display: grid;
  place-items: center;
  color: #583c87;
}

@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

.heart-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.heart {
  position: absolute;
  width: 20px;
  height: 20px;
  color: #d4af37;
  transform: rotate(0deg);
  animation: heart-animation 1s ease-in-out infinite;
  z-index: 2;
  font-size: 20pt;
}

@keyframes heart-animation {
  0% {
    opacity: 0;
    transform: translateY(-50px) rotate(45deg);
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(50px) rotate(45deg);
  }
}

.heart:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0.2s;
}

.heart:nth-child(2) {
  top: 20%;
  left: 80%;
  animation-delay: 0.5s;
}

.heart:nth-child(3) {
  top: 50%;
  left: 50%;
  animation-delay: 0.8s;
}

.heart:nth-child(4) {
  top: 70%;
  left: 10%;
  animation-delay: 1s;
}
