/* css styles */
.smallcaps {
  /* font-variant: small-caps; */
  font-family: 'Playfair Display SC', serif;
  text-align: center;
  font-variant-ligatures: none !important;
}

.cursive {
  font-family: 'MonteCarlo', cursive;
  font-size: 2rem;
}

.rounded-image {
  border-radius: 1rem;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 3s ease-in-out;
}

.br {
  margin-bottom: 5em;
}

.emoji {
  font-family: "Noto Color Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
}