@charset "UTF-8";

body {
  font-family: 'Hind Siliguri', sans-serif;
}

.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  color: white;
}

.fade {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.fade.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#ds {
  margin-bottom: 300px;
}

.profile-overlay {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  max-width: 120px;
  pointer-events: none;
}	


h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.socials {
  color: white;
  display: flex;
  justify-content: center;
}

.has-tooltip {
  position: relative;
  margin: 0 10px;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.socials svg {
  width: 24px;
  height: 24px;
  fill: #DCDCDC;
}

.card-body {
  background-color: #2C3E3F;
}

.card-footer {
  background-color: transparent !important;
  border: none !important;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #009de0;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-badge {
  width: 30px;
  height: 30px;
  background-color: #009de0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.timeline-content {
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
  width: calc(50% - 40px);
}



@media (max-width: 991px) {
  .timeline-content {
    width: 100%;
  }

  .timeline-badge {
    display: none;
  }
}
