.page-header {
  height: 100vh;
  min-height: 400px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 32px;
}

.down-icon {
  margin-bottom: 40px;
}

button {
  padding: 6px 12px;
  font-size: 18px;
  border-radius: 4px;
  background-color: transparent;
  color: var(--text-color);
  cursor: pointer;
}

button:hover {
  color: var(--bg-color);
  background-color: var(--text-color);
}

footer {
  padding-top: 40px;
  font-size: 16px;
}

.content-modal {
  position: fixed;
  width: 80vw;
  height: 80vh;
  min-width: 1200px;
  min-height: 400px;
  left: 10vw;
  top: 10vh;
  border-radius: 8px;
  z-index: 100;
  padding: 8px 16px;
  opacity: 0;
  font-size: 24px;
  line-height: 1.5;
  pointer-events: none;
  background-size: cover;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../img/modal_bg.webp") center/cover no-repeat;
  transition: all 0.3s ease-in-out;
  text-shadow: var(--text-dark-shadow);
}

.route,
.hotel {
  padding: 80px;
  line-height: 2;
}

.hotel img {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  border-radius: 8px;
}

.hotel {
  padding-right: 40%;
}

.route h3:nth-of-type(2) {
  margin-top: 40px;
}

button:hover + .content-modal,
.content-modal:hover,
.content-modal.test {
  opacity: 1;
  pointer-events: initial;
}
