body {
    background: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

#quote-text {
    font-family: 'Playfair Display', serif;
    transition: opacity 1.2s ease-in-out;
    opacity: 0; /* Starts hidden for the fade-in */
}

#quote-author {
    transition: opacity 1.2s ease-in-out;
    opacity: 0;
}

/* The magic class triggered by JS */
.fade-in {
    opacity: 1 !important;
}

.ultra-small {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.tiny-text {
    font-size: 0.6rem;
}


.rounded-0 {
    border-radius: 0 !important;
}

.border-top{
	padding-top: 24rem;
}


.position-relative {
    position: fixed !important;  
}

.navbar-brand {
    padding-top: 6rem;
  }

/*  */
@media (min-width: 575px) {
  .navbar-brand {
    padding-top: 5rem;
  }
}

@media (max-width: 425px) {
  .navbar-brand {
    padding-top: 6rem;
  }
}