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;
}

.hero {
  padding: 3rem 1rem;
  background-color: #fdf6ec;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.hero .lead {
  color: #6b5b4b;
}

.gallery-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease-in-out;
}

.gallery-photo:hover {
  transform: scale(1.02);
}

.navbar-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.hero-logo {
  max-width: 180px;
  height: auto;
  border-radius: 0.5rem;
}

.navbar-facebook {
  color: #1877f2;
  transition: color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.navbar-facebook:hover {
  color: #0d5dc7;
  transform: scale(1.1);
}