@media (min-width: 768px) {
    .full-height {
        height: 100%;
    }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgb(20, 200, 173, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
  }
}