* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  color: #fff;
  background-image: linear-gradient(rgb(0, 74, 101), rgb(0, 86, 104), rgb(0, 98, 100), rgb(27, 108, 92), rgb(64, 117, 81));
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container {
  max-width: 1000px;
  width: 100%;
  padding: 30px 20px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .container {
    padding: 20px;
    margin: 10px;
  }
}

header {
  margin-bottom: 15px;
}
header .logo {
  max-width: 130px;
  height: auto;
  width: 100%;
}
@media (max-width: 768px) {
  header .logo {
    max-width: 200px;
  }
}
@media (max-width: 480px) {
  header .logo {
    max-width: 150px;
  }
}

main {
  margin-bottom: 40px;
}
main h1 {
  font-size: 2em;
}
@media (max-width: 768px) {
  main h1 {
    font-size: 1.6em;
  }
}
@media (max-width: 480px) {
  main h1 {
    font-size: 1.4em;
  }
}
main h1 {
  margin-bottom: 15px;
  color: #fff;
}
main p {
  font-size: 1rem;
}
@media (max-width: 768px) {
  main p {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  main p {
    font-size: 0.7rem;
  }
}
main p {
  margin-bottom: 0;
  color: #fff;
}

.attractions {
  padding: 2.5rem 1rem 1rem;
  margin-bottom: 40px;
}
.attractions h2 {
  font-size: 1.25em;
}
@media (max-width: 768px) {
  .attractions h2 {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .attractions h2 {
    font-size: 0.875em;
  }
}
.attractions h2 {
  margin-bottom: 15px;
  color: #fff;
}
@media (max-width: 1024px) {
  .attractions h2 {
    margin-bottom: 40px;
  }
}

.attractionsGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 100px;
  align-items: center;
}
@media (max-width: 1024px) {
  .attractionsGrid {
    gap: 40px 100px;
  }
}
@media (max-width: 600px) {
  .attractionsGrid {
    gap: 15px;
  }
}
.attractionsGrid .attraction {
  width: calc((100% - 480px) / 5);
}
@media (max-width: 1024px) {
  .attractionsGrid .attraction {
    width: calc((100% - 300px) / 4);
  }
}
@media (max-width: 600px) {
  .attractionsGrid .attraction {
    width: calc((100% - 15px) / 2);
  }
}
.attractionsGrid .attraction div.link {
  display: flex;
  justify-content: center;
}
.attractionsGrid .attraction div.link img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 75px;
}
@media (max-width: 1024px) {
  .attractionsGrid .attraction div.link img {
    max-height: unset;
    max-width: 90px;
  }
}
@media (max-width: 600px) {
  .attractionsGrid .attraction div.link img {
    gap: 15px;
  }
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2196078431);
  padding: 3rem 0 1rem;
}
footer .contact-info {
  margin-bottom: 20px;
}
footer .contact-info p {
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  footer .contact-info p {
    font-size: 0.68rem;
  }
}
@media (max-width: 480px) {
  footer .contact-info p {
    font-size: 0.595rem;
  }
}
footer .contact-info p {
  margin-bottom: 8px;
  color: #fff;
}
footer .contact-info p strong {
  color: #ffffff;
}
footer .contact-info p a {
  color: #ffffff;
  text-decoration: none;
}
footer .contact-info p a:hover {
  text-decoration: underline;
}
footer p {
  font-size: 1em;
}
@media (max-width: 768px) {
  footer p {
    font-size: 0.8em;
  }
}
@media (max-width: 480px) {
  footer p {
    font-size: 0.7em;
  }
}
footer p {
  margin-bottom: 20px;
  color: #fff;
}
footer .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer .social-links a {
  font-size: 1em;
}
@media (max-width: 768px) {
  footer .social-links a {
    font-size: 0.8em;
  }
}
@media (max-width: 480px) {
  footer .social-links a {
    font-size: 0.7em;
  }
}
footer .social-links a {
  color: #ffffff;
  text-decoration: none;
  padding: 5px 15px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s;
}
footer .social-links a:hover {
  background-color: #ffffff;
  color: #000;
}
@media (max-width: 480px) {
  footer .social-links a {
    padding: 5px 12px;
  }
}/*# sourceMappingURL=styles.css.map */