html {
  font-family: 'Edu SA Beginner';
}

.background {
  background-color: #186bd8;
  width: 70%;
  height: 40%;
  position: fixed;
  top: -25%;
  left: 40%;
  color: white;
  transform: skewX(-50deg);
  z-index: -1;
}


.title {
  color: #ffffff;
  z-index: 1;
  font-size: 70px;
  margin-top: 9%;
}


@media (min-width:481px) {
  .background {
    left: 0%;
  }
}

@media (min-width:1025px) {

  .background {
    left: -40%;
  }

  .title {
    margin-top: 3%;
    font-size: 50px;
  }
}


header {
  width: 100%;
  background-color: #186bd8;
  height: 30px;
  position: absolute;
  top: 0px;
}

ul {
  color: black;
  display: flex;
  padding-left: -80%;
  margin-top: 0px;
}

li {
  font-size: 15px;
  padding: 10px;
  color: white;
}

li a {
  color: white;
  text-decoration: none;
}

@media (min-width:769px) {
  ul {
    padding-left: 65%;
    margin-top: 0px;
  }

  li {
    font-size: 30px;
  }

  header {
    height: 50px;
  }
}

select {
  all: unset;
}

option {
  color: black;
}


.content {
  position: absolute;
  top: 20%;
  width: 60%;
  font-size: 40px;
  text-align: justify;
}

@media (min-width:769px) {
  .content {
    font-size: 30px;
  }
}

.container {
  width: 300px;
  height: 1200px;
  overflow: hidden;
  position: relative;
  left: 65%;
  top: 100%;
  margin-top: 25%;

}

@media (min-width:1029px) {
  .container {
    width: 350px;
    height: 950px;
    margin-top: 0%;
    left: 70%;
  }
}

/* Styles for the moving images container */
.moving-image-container {
  position: absolute;
  right: 0;
  animation: moveImages 410s linear infinite;
}

/* Styles for the moving images */
.moving-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  /* Add some space between images */
}

/* Keyframes for moving the images vertically */
@keyframes moveImages {

  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(-200%);
  }

  75% {
    transform: translateY(-300%);
  }
}

.others {
  margin-top: 50px;
  margin-left: 15%;
  display: flex;
}

.letters {
  color: blue;
  font-size: 170px;
}

.cir {
  width: 150px;
  height: 150px;
  background-color: blue;
  border-radius: 100%;
  color: white;
  font-size: 25px;
  text-align: center;
}

.cir h4 {
  text-align: center;
}

.cir img {
  width: 300px;
  height: 200px;
  display: none;
}

.cir h4:hover+img {
  display: block;
  position: absolute;
}

@media (min-width:1029px) {
  .others {
    margin-left: 25%;
  }

  .cir {
    width: 150px;
    height: 150px;
    font-size: 30px;
  }

  .cir img {
    width: 300px;
    height: 200px;
  }

  .letters {
    font-size: 170px;
  }

}

.hotels div {
  display: inline;
}

.hotels div div a {
  text-decoration: none;
  color: black;
}

.hotels div div {
  border: 2px solid #186bd8;
  padding: 5px;
  font-size: 22px;
  margin: 10px;
  box-shadow: 0 0 2px 2px #186bd8;

}

.hotels h4 {
  font-size: 50px;
}

@media (min-width:769px) {
  .hotels div div {
    padding: 1px;
    margin: 5px;
  }
}

@media (min-width:1029px) {
  .hotels h4 {
    font-size: 50px;
  }

  .hotels {
    top: 150%;
  }

  .hotels div div {
    font-size: 30px;
    padding: 10px;
    margin: 50px;
  }

}

.locationimage {
  width: 50%;
  height: 50%;
}

.location {
  margin-top: 50px;
  background-color: #186bd8;
  color: white;
  text-align: center;
  padding: 30px;
}

.location h4 {
  font-size: 30px;
}

@media (min-width:769px) {
  .location {
    width: 100%;
    height: 50%;
    bottom: 0%;
    top: 200%;
  }

  .locationimage {
    width: 400px;
    height: 200px;
  }
}
