@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 1.7rem !important;
    }
  }

  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1.2rem !important;
    }
  }


  .blink{
    animation: blinker 0.5s linear infinite;
    }
    
    @keyframes blinker {
        50% {
            opacity: 0;
        }
    }
    