body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  gap: 3vw;
  display: flex;
  padding: 3vw 10vw;
  flex-direction: column;
  background-color: black;
  min-height: 100vh;
}

.header {
  gap: 4vw;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 2fr);
}

.header-texts {
  gap: 2vw;
  display: flex;
  position: relative;
  padding-right: 2vw;
  flex-direction: column;
  align-items: flex-start;
}

.header-texts::before {
  width: 25vw;
  content: "";
  height: 15vw;
  filter: blur(140px);
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    rgb(74, 156, 255) 24%,
    rgba(252, 144, 255, 1) 100%
  );
}

.title {
  z-index: 2;
  font-size: 2vw;
  position: sticky;
  color: rgb(255, 255, 255);
}

.desc {
  z-index: 2;
  font-size: 1vw;
  position: sticky;
  color: rgb(212, 212, 212);
}

.header-btn {
  gap: 1vw;
  z-index: 2;
  display: flex;
  color: white;
  font-size: 1vw;
  padding: 1vw 2vw;
  position: sticky;
  align-items: center;
  border-radius: 0.5vw;
  text-decoration: none;
  background-color: rgb(19, 137, 255);
}

.header-btn .fa {
  transition: 0.2s;
}

.header-btn:hover .fa.fa-arrow-right {
  transform: rotate(-30deg);
}

.social-icons {
  gap: 1.5vw;
  z-index: 2;
  display: flex;
  margin-top: 2vw;
  position: sticky;
}

.social-icons .icon {
  width: 2.5vw;
  height: 2.5vw;
  display: flex;
  color: white;
  cursor: pointer;
  font-size: 1.2vw;
  transition: 0.4s;
  border-radius: 50%;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.251);
}

.social-icons .icon:hover {
  transform: rotate(360deg) scale(1.1);
}

.header-imgs {
  overflow: hidden;
}

.chartdiv {
  height: 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infos {
  gap: 2vw;
  display: flex;
  flex-direction: column;
}

.site-socials {
  gap: 2vw 4vw;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
}

.social-card {
  gap: 0.5vw;
  display: flex;
  font-size: 1vw;
  padding: 1.2vw;
  position: relative;
  align-items: center;
  border-radius: 0.5vw;
  text-decoration: none;
  color: rgb(255, 255, 255);
  border: solid 1px rgb(194, 194, 194);
  background-color: rgba(255, 255, 255, 0.158);
}

.social-card .fa {
  font-size: 1.2vw;
  color: rgb(255, 255, 255);
}

.social-card .fa.fa-arrow-right {
  right: 1.2vw;
  font-size: 0.8vw;
  transition: 0.2s;
  position: absolute;
}

.social-card:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.social-card:hover .fa.fa-arrow-right {
  transform: rotate(-30deg);
}

.maply {
  gap: 1vw;
  width: 100%;
  padding: 1.5vw;
  border-radius: 0.5vw;
  border: solid 1px rgb(194, 194, 194);
}

.maply iframe {
  width: 100%;
  height: 30vw;
}

.bottom_infos {
  background-color: black;
  padding-top: 1vw;
  text-align: center;
  border-top: solid 1px rgba(194, 194, 194, 0.655);
}

.arsenal {
  color: white;
  font-size: 1vw;
  font-weight: 600;
  text-decoration: none;
}

.arsenal:hover {
  text-decoration: underline;
}

.tagcloud--item {
  font-size: 1vw;
  cursor: pointer;
}

.tagcloud--item:hover {
  color: dodgerblue;
}

.tagcloud {
  width: 25vw !important;
  height: 25vw !important;
}

.description p {
  opacity: 0.7;
  color: #fff;
}

@media (max-width: 767px) {
  .wrapper {
    gap: 5vw;
    padding: 5vw;
  }

  .header {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .header-texts {
    gap: 3vw;
    padding: 0;
  }

  .header-texts::before {
    top: -20vw;
    width: 90vw;
    height: 50vw;
  }

  .title {
    font-size: 7vw;
  }

  .desc {
    font-size: 4vw;
  }

  .header-btn {
    gap: 3vw;
    font-size: 4vw;
    padding: 3vw 4vw;
    border-radius: 1.5vw;
  }

  .social-icons {
    gap: 3vw;
    width: 100%;
    margin-top: 3vw;
    justify-content: space-between;
  }

  .social-icons .icon {
    width: 10vw;
    height: 10vw;
    font-size: 4.2vw;
  }

  .header-imgs {
    width: 100%;
  }

  .chartdiv {
    width: 100%;
    height: 60vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .infos {
    gap: 5vw;
  }

  .site-socials {
    gap: 3vw;
    grid-template-columns: repeat(1, 1fr);
  }

  .social-card {
    gap: 1.5vw;
    font-size: 3.5vw;
    padding: 2.5vw 3vw;
    border-radius: 1.5vw;
  }

  .social-card .fa {
    font-size: 5vw;
  }

  .social-card .fa.fa-arrow-right {
    right: 3vw;
    font-size: 2.5vw;
  }

  .maply {
    width: 100%;
    padding: 3vw;
    border-radius: 1.5vw;
  }

  .maply iframe {
    height: 60vw;
  }

  .bottom_infos {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .arsenal {
    font-size: 3.5vw;
  }

  .tagcloud--item {
    font-size: 2.8vw;
  }
}
