body {
  font-family: Arial, sans-serif;
  background-color: #f0f8ff;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

header {
  background-color: #2d98da; /* tropical ocean blue */
  color: #fff;
  padding: 20px;
  text-align: center;
}


nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

img {
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

ul,
ol {
  margin: 10px auto;
  width: 80%;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Grid for multiple images */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  text-align: center;
}

button {
  background-color: #008cba;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}


@media (max-width:600px) {
  ul, 
  ol {
      width: 95%;
  }
 
  nav a {
    display: block;
    Margin:5px 0;       
  }
}
 
/*remove bullet from only the destination list*/
.destinations-list {
  list-style-type: none;
  padding-left; 0;
}