

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/Lato-Regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/Lato-Bold.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/Overpass_Regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/Overpass_Bold.woff2') format('woff2');
  font-display: swap;
}

      * {
        font-family: 'Lato', sans-serif;
      }
      .overpass {
        font-family: 'Overpass', sans-serif;
      }
      .big-radio-button {
        background-color: #f401ab;
        transition: background-color 0.8s ease;
      }
      .big-radio-button:hover {
        background-color: #0175f4;
      }
      .selected {
        outline: 1px solid #0175f4;
        background-color: #0175f4;
        outline-offset: 2px;
      }
      .two-columns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      @media (min-width: 768px) {
        .two-columns {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .staggered-item {
        animation: fadeIn 0.7s ease-out forwards;
        opacity: 0;
      }

      @keyframes fadeInSlideUp {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .error-enter-animation {
        animation: fadeInSlideUp 0.5s ease-out forwards;
      }
      .filter-white {
        filter: brightness(0) invert(0.2) sepia(1) saturate(5)
          hue-rotate(180deg);
      }
      @keyframes fadeIn2s {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      .fade-in-2s {
        animation: fadeIn2s 2s ease-out forwards;
      }

      .iti {
        width: 100%;
      }

      @keyframes scaleUp {
        0% {
          transform: scale(1);
        }
        100% {
          transform: scale(1.05);
        }
      }

      .animate-scale {
        animation: scaleUp 0.6s ease-in-out infinite alternate;
        opacity: 1 !important;
      }
