html,
body {
  margin: 0;
  padding: 0;
}
#particles-js {
  background: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logopresentation {
  margin-top: -200px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 20px;
}

.animate__animated {
  animation-iteration-count: infinite;
}
.visite {
  position: absolute;
  text-align: center;
  font-family: Helvetica;
  font-weight: 500;
  color: var(--softgray);
  font-size: 17px;
}
.contacts {
  padding-left: 20px;
  padding-right: 20px;
  font-family: Helvetica;
  display: flex;
  position: absolute;
  text-align: center;
  top: 60%;
  font-size: 18px;
  font-weight: 400;
  color: var(--softgray);
  gap: 30px;
  border: 1px solid var(--blue);
  border-radius: 30px;
}

.contacts > div {
  display: flex;
  align-items: center;
}

.contacts > div > img {
  width: 38px;
  height: 38px;
}

.socialnetworks {
  font-family: helvetica;
  font-weight: 600;
  top: 78%;
  position: absolute;
  text-align: center;
}

:root {
  color: var(--softgray);
  --softgray: #383838;
  --bgray: #1e1e1e;
  --blue: #184a9a;
}

/* MEDIA QUERIES PARA TABLETS */
@media screen and (max-width: 1024px) {
  .contacts {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    display: block;
    font-size: 14px;
    top: 50%;
  }

  .contacts > div > img {
    width: 28px;
    height: 28px;
  }

  .visite {
    top: 40%;
    font-size: 14px;
  }
  .logopresentation > div > img {
    width: 140px;
  }
  .socialnetworks {
    font-size: 14px;
    font-weight: 600;
  }
  .socialnetworks > img {
    width: 140px;
  }
}

/* MEDIA QUERIES PARA TELEMÓVEIS */
@media screen and (max-width: 600px) {
  .contacts {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    display: block;
    font-size: 10px;
    top: 50%;
  }
  .contacts > div > img {
    width: 18px;
    height: 18px;
  }
  .logopresentation > div > img {
    width: 80px;
  }
  .visite {
    font-size: 10px;
  }
  .socialnetworks {
    font-size: 10px;
    font-weight: 600;

    top: 70%;
  }
  .socialnetworks > img {
    width: 80px;
  }
}
