html {
  scroll-padding-top: 56px;
}

.masthead {
  height: 100vh;
  background:linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url('../images/bosphorus-cruise-istanbul.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
}

@media (max-width: 767px) {
  .masthead {
    background:linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url('../images/bosphorus-cruise-istanbul-mobile.webp');
    background-position: center;
    background-size: cover;
  }
}

.masthead h1 {
  font-size: 4rem;
}

.masthead p {
  font-size: 1.5rem;
  margin-top: 5%;
}

.content-text {
  padding: 30px;
}

.content-text h2 {
font-size: 2.5rem;
margin-top: 20px;
margin-bottom: 30px;
}

.content-text p {
font-size: 1.2rem;
margin-bottom: 45px;
text-align: justify;
}

footer {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: lightgray;
  }

footer a {
  color: lightgray;
}

.city-attraction{
  margin-bottom: 20px;
  color: white;
  text-decoration: none;
}

.hover {
  overflow: hidden;
  position: relative;
  padding-bottom: 60%;
  text-align: center;
  border-radius: 10px;
}

.hover-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  transition: all 0.4s;
}

.hover img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.hover-content {
  position: relative;
  z-index: 99;
}

.hover-poi img {
  width: 105%;
  position: absolute;
  top: 0;
  left: -5%;
  transition: all 0.3s;
}

.hover-poi .hover-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
}

.hover-poi-title {
  position: absolute;
  top: 45%;
  text-align: center;
  width: 100%;
  z-index: 99;
  transition: all 0.3s;
}

.hover-poi-description {
  width: 100%;
  position: absolute;
  bottom: 0;
  opacity: 0;
  text-align: center;
  z-index: 99;
  padding-right: 40px;
  padding-left: 40px;
  transition: all 0.3s;
}

.hover-poi:hover .hover-poi-title {
  transform: translateY(-1.5rem);
}

.hover-poi:hover .hover-poi-description {
  bottom: 0.5rem;
  opacity: 1;
}

.hover-poi:hover .hover-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
}

.hover-poi:hover img {
  left: 0;
}

.section-heading{
  font-size: 3rem;
  margin-bottom: 30px;
}

.city-attractions-section{
  margin-bottom: 80px;
}

.city-attraction p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}