@font-face {
  font-family: 'Mynerve';
  src: url('../fonts/Mynerve-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Mynerve', sans-serif !important;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}


@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fade-in 1.5s ease-in-out forwards;
}

