/* body style */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* header style */
header {
  background-color: #333333;
  color: #ffffff;
  padding: 20px;
}

/* section style */
section {
  padding: 20px;
  margin-bottom: 30px;
}

/* h2 style */
h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* thumbnail image style */
.thumbnail {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.thumbnail img {
  width: 200px;
  height: auto;
}

/* poi link style */
.poi-link {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #f2f2f2;
  color: #333333;
  text-decoration: none;
  font-weight: bold;
}

.poi-link:hover {
  background-color: #333333;
  color: #ffffff;
}

/* poi description style */
.poi-description {
  margin-bottom: 10px;
}

/* poi rating style */
.poi-rating {
  display: inline-block;
  margin-left: 10px;
  font-weight: bold;
}

/* footer style */
footer {
  background-color: #333333;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

