/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-image: url("images/cover.jpg");
  background-size: cover;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.destination-list {
  list-style: none;
}

.destination {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.destination-info {
  text-align: center;
}

.destination-info img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.destination-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.destination-info p {
  font-size: 16px;
  margin-bottom: 5px;
}

.interactions {
  margin-top: 20px;
}

.comment-box {
  width: 100%;
  height: 80px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: none;
  margin-bottom: 10px;
}

.like-button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.comment-section,
.like-count {
  font-size: 16px;
  margin-bottom: 5px;
}

.comment-section span,
.like-count span {
  font-weight: bold;
}
