body {
  background: linear-gradient(0deg, #d8fff8, #e2fafc);
  color: #444444;
}

header {
  position: static;
}

h1,
h3,
p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

h3 {
  font-weight: 500;
}

.tours-full-width {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tours-container {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  max-width: 85rem;
}

.card {
  width: 20.625rem;
  height: auto;
  margin: 1.25rem;
  padding: 0.3125rem;
  background-color: var(--color-white);
  transition: 0.3s;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border-radius: 0.3125rem;
  text-align: center;
}

.card p {
  line-height: 0.05rem;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.container {
  padding: 0.125rem 1rem;
}

.card img {
  width: 100%;
  height: 12.5rem;
  border-radius: 0.3125rem 0.3125rem 0 0;
}

.book-tour-btn {
  width: 12.5rem;
  height: 3.125rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin: 1rem;
}

.tour-contact {
  display: flex;
  justify-content: center;
}

.tour-btn {
  width: 12.5rem;
  text-decoration: none;
  margin: 1rem auto 1.875rem;
  border: none;
  font-size: 1.25rem;
}

@media (max-width: 56.25rem) {
  .tours-container {
    flex-wrap: wrap;
  }
}
