@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
  color: #333;
}

header {
  background-color: #ffffff;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
}

header h1 {
  padding-left: 32px;
  font-size: 24px;
}

section {
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
}

#start {
  background-image: url(img/bg.jpg);
  background-size: cover;
  background-position: 30% 50%;
  min-height: 60vh;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#start h2 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  text-shadow: 4px 4px 3px rgba(0, 0, 0, 1);
}

#start p {
  font-size: 24px;
  margin: 0;
  padding: 0;
  text-shadow: 4px 4px 3px rgba(0, 0, 0, 1);
}

.button {
  background-color: #00ff55;
  color: rgb(24, 24, 24);
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 24px;
  cursor: pointer;
  width: fit-content;
  margin-top: 20px;
}

.button:hover {
  background-color: #38ff7a;
}

.start-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  text-align: center;
}

.slide-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide {
  display: flex;
  gap: 32px;
  width: 50%;
}



.slide img {
  width: 300px;
  max-width: 100%;
  border-radius: 8px;
  animation: slideIn 1s ease;
  height: min-content;
}

@keyframes slideIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1500px) {
  .slide {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.location {
  display: flex;
  flex-direction: column;
  align-content: center;
}

.location img {
  width: 32px;
  height: auto;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}



footer {
  color: #fff;
  padding: 10px 0;
}

.image-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  min-height: 500px;
}

.image-slider img {
  max-width: 100%;
  border-radius: 8px;
  animation: slideIn 1s ease;
}
