@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0;
  background-color: black;
  font-family: "Montserrat", sans-serif;
}

#start {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 800px;
  justify-content: center;
  
  background-image: url(img/bg.jpg);
  background-position: -25% 25%;
  background-size: 70rem;
  background-repeat: no-repeat;
  background-size: cover;
}

#start h1 {
  color: white;
  text-shadow: 3px 3px 10px black;
  padding: 16px;
  text-align: center;
}

@media (max-width: 1200px) {
  
  #start {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

  }

}

#start .logo {
  max-width: 90%;
  filter: drop-shadow(5px 5px 3px black);
}

#start h2 {
  color: white;
  font-weight: normal;
  font-size: 36px;
  text-shadow: 3px 3px 5px black ;
}

#cities {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  width: 60rem;
}

section {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 32px;
  gap: 16px;
    }

@media (max-width: 900px) {
  section {
    flex-direction: column;
  }
}

section img {
  transform: rotateX(180deg) rotateZ(180deg);
  width: 20rem;
  border-radius: 32px;
}

.section-div {
  width: 70rem;
  max-width: 100%;
}

.section-div h3 {
  font-size: 36px;
}

.section-div p {
  font-size: 20px;
}

.button {
  border-radius: 16px;
  background-color: #ff0000;
  text-decoration: none;
  color: black;
  font-size: 26px;
  padding: 16px 32px;
  transition: 250ms;
}

.button:hover {
  background-color: #cc0000;
}

footer {
  margin-top: 32px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}


.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.8);

}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,1.0);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}