body {
  font-family: 'Inter', sans-serif;
  background-color: #FDFDFD;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-light {
  background-color: #F5F5F5 !important;
}

.bg-dark {
  background-color: #161616 !important;
}

.logo {
  width: 100px;
  height: auto;
}

.text-underline {
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
  transition: border 0.1s ease-in;
}

.text-underline:hover {
  border-bottom-color: currentColor;
}

.card {
  border-radius: 1rem;
  background-color: white;
  padding: 2rem;
  border: none;
}

.text-pink {
  color: #DB2777;
}

.text-red {
  color: #EF4444;
}

.text-indigo {
  color: #4338CA;
}

.text-purple {
  color: #8B5CF6;
}

.scroll::-webkit-scrollbar {
  width: 10px;
}

.scroll::-webkit-scrollbar-track {
  background: black;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  border: 2px solid black;
}