/* Google font - Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
  background-color: #111318;
  color: #fff;
  margin-left: 0;
  margin-right: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  color: #8994ae;
}

.profile_section {
  text-align: left;
}

.profile_section h5 {
  margin-bottom: 0;
}

.profile_section i {
  color: cornflowerblue;
}

.card {
  background-color: #15181e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.card:hover {
  background-color: rgba(0, 0, 0, 0.9) !important;
  transform: scale(1.02);
  transition: transform 0.3s ease-in-out;
}

.card p {
  font-size: 12px;
}

.bg-dark:hover {
  background-color: rgba(0, 0, 0, 0.9) !important;
  transform: scale(1.02);
  transition: transform 0.3s ease-in-out;
}

.footer a {
  color: #8994ae;
  transition: color 0.3s ease-in-out;
}

.footer a:hover,
.footer a.active {
  color: #fff;
}

/* Fade-in animation styles */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.7s ease-out forwards;
}

/* Delay classes */
.delay-0 {
  animation-delay: 0s;
}

.delay-1 {
  animation-delay: 0.4s;
}

.delay-2 {
  animation-delay: 0.8s;
}

.delay-3 {
  animation-delay: 0.12s;
}


@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

/* Media query for large screens */
@media (min-width: 992px) {
  body {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .card p {
    font-size: 15px;
  }
}
