@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap");

.navbar-brand {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  text-decoration: none;
}

.margin-bottom {
  margin-bottom: 6rem;
}

.text {
  text-align: justify;
}

body {
  font-family: "Dosis", sans-serif;
  font-size: 20px;
  background-color: #eff2fa;
}

.font-one {
  font-family: "Special Elite", system-ui;
}

/* main */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 86vh;
}

.profile-picture img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

@keyframes animate-wave {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0);
  }
}

.social-icon a i {
  margin: 0 10px;
  padding: 2px;
  border-radius: 5px;
  border: 1px solid #000000;
}

.fa-square-x-twitter {
  color: #000000;
  font-size: 26px;
}

.bxl-github {
  color: #000000;
}

.bxl-linkedin {
  color: #2a66c3;
}

.bxl-youtube {
  color: #f01f33;
}

.wave {
  font-size: 40px;
  display: inline-block;
  animation: animate-wave 500ms infinite ease-in-out;
}

/* card */
.card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translate(5px, -10px);
}

.btn-custom {
  padding: 1px 15px;
}

.tag {
  padding: 1px 5px;
  color: #868e96 !important;
}

.btn-custom:hover {
  background-color: #343a40;
  color: #fff !important;
}
