@import url("https://fonts.googleapis.com/css2?family=Gentium+Plus&family=Joan&family=Montserrat:wght@400;600&family=PT+Serif&family=Source+Serif+Pro:wght@200&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  background: #06adff;
}
html {
  font-size: 62.5%;
}
body{
    display: flex;
}
.btn {
  margin-top: 7rem;
  display: flex;
  justify-content: center;
}
.btn a {
  text-decoration: none;
  padding: 2.5rem 5rem;
  background: #fff;
  border-radius: 1rem;
  font-size: 1.6rem;
  color: #000;
}
.icon {
  margin-top: 4rem;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}
.skills-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  background: #fff;
  border-radius: 1rem;
  width: 100%;
  padding: 5rem 4rem;
}

.skills-wrapper .skill-box h4 {
  background: #fff;
  font-size: 1.5rem;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.skills-wrapper .skill-box {
  margin-bottom: 2rem;
  background: #fff;
}

.skills-wrapper .skill-box .progress-wrap {
  height: 6px;
  width: 100%;
  border: 1.6px solid #000;
  border-radius: 10px;
  background: #fff;
}

.skills-wrapper .skill-box .progress-wrap .progress-bar {
  display: block;
  height: 100%;
  background: #000;
  width: 0;
  position: relative;
  transition: all 1s ease-in-out;
}
.skills-wrapper .skill-box .progress-wrap .progress-bar .tooltip {
  position: absolute;
  left: -15px;
  top: -22px;
  margin-bottom: 1rem;
  color: #000;
  background: #fff;

  font-size: 1.5rem;
  text-transform: uppercase;
}


@media (max-width: 600px) {
  html {
    font-size: 50.5%;
  }
  .skills-wrapper {
    width: 90%;
  }
}
