html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.favicon-img {
    width: 32px;
    height: 32px;
    object-fit: cover; /* Ensures the image covers the area without distortion */
}
.remaining-height {  
       flex: 1;  
 }
.full-height {
    height: 100vh;
}
.text-shadow-white {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
}
.text-shadow-black {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hours {
    font-size: 4rem; /* Large text size */
}
.pmp {
    font-size: 3rem; /* Large text size */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#logo {
    animation: spin 30s linear infinite;
    animation-play-state: running;
}
