body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

.typewriter-container {
  display: inline-block;
}

.text {
  font-size: 3rem;
  margin-bottom: 0;
  letter-spacing: 9px;
  border-right: 4px solid;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 2s steps(18), cursor 0.6s step-end infinite alternate;
}

.reach-out-text {
  font-size: 1.5rem;
}

.form-control {
  background: transparent;
  color: rgb(221, 221, 221);
}

.form-control:focus {
  background: transparent;
  border: 1px solid var(--bs-secondary);
  box-shadow: none;
  color: rgb(221, 221, 221) !important;
}

::placeholder {
  color: rgba(221, 221, 221, 0.5) !important;
  font-size: 1.125rem !important;
}

.btn-contact {
  border: 1px solid transparent;
}

.btn-contact:hover {
  background: transparent;
  border: 1px solid var(--bs-secondary);
  transition: 0.7s all;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 1399px) {
  .text {
    font-size: 2.5rem;
    letter-spacing: 8px;
  }
}
@media (max-width: 1199px) {
  .text {
    font-size: 2rem;
    letter-spacing: 8px;
  }
}
@media (max-width: 991px) {
  .text {
    font-size: 1.5rem;
    letter-spacing: 7px;
  }
}
@media (max-width: 767px) {
  #contact {
    padding: 1rem 0 !important;
  }
  .typewriter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
  }
  .text {
    font-size: 1.5rem;
    letter-spacing: 5px;
    border-right: 2px solid;
    text-align: center;
  }
  .reach-out-text {
    font-size: 1.25rem;
  }
  .center-text p {
    text-align: center;
    margin-left: 0 !important;
  }
  .footer {
    margin: 1.5rem 0.5rem !important;
    position: static;
  }
  .copyright-text {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .copyright-text span {
    display: none;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}
@keyframes cursor {
  50% {
    border-color: transparent;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
