.font-shoulders-display {
    font-family: "Big Shoulders Display", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.font-montreal {
    font-family: 'PP Neue Montreal', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


@keyframes zoomInOut {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

.animate-zoomInOut {
    animation: zoomInOut 1.5s ease-in-out infinite;
}

.background-xadrez {
    background-image: url('/images/background-xeque-marketing.jpg');
    background-size: cover;
    background-position: top center;
}