#jumbotron {
  padding: 6rem 0rem 4rem 1rem;
  background-color: #cadeff;
}

#about {
  padding: 3.5rem 0 3rem 0;
}

#contact {
  padding: 3.5rem 0 0 0;
}

.contact .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}

.contact button:hover .tooltiptext {
  visibility: visible;
}

#projects {
  padding: 5rem 0rem 4rem 0rem;
  background-color: #cadeff;
}

@media (max-width: 900px) {
  section h1 {
    font-size: 2rem;
    text-align: center;
  }
  section .text-container {
    flex-direction: column;
  }

  .progress {
    display: none;
  }
}

.progress {
  top: 55px;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.text-typing {
  padding: 0px 16px;
  font-size: 30px;
  font-family: monospace;
  border-radius: 50px;
}

.text-typing p {
  margin: 0px;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 4s steps(43, end) forwards, blink 1s infinite;
}
@keyframes typing {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes blink {
  0%,
  100% {
    border-right: 2px solid transparent;
  }
  50% {
    border-right: 2px solid #222;
  }
}
