

body {
  margin: 0;
  padding: 0;
  font-family: 'Anton', sans-serif;
  min-height: 100vh;
  background-color: rgb(213, 214, 223);
  display: flex;
  flex-direction: column;
}


header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 15vh;
  background-color: rgb(47, 160, 52);
  text-align: center;
  z-index: 1000;
}

header h1 {
  margin: 0;
  line-height: 15vh;
  font-family: 'Rubik Mono One', monospace;
  font-size: 5vh;
  color: black;
}


main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15vh;
}

.slider-container {
  position: relative;
  width: 80%;
  max-width: 800px;
  height: 70vh;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}


.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-color: black; 
  display: flex;
  align-items: center;
  justify-content: center;
}


.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-text-center {
  color: white;
  font-size: 3em;
  text-align: center;
  margin: 0;
  padding: 20px;
}


.slide-text-bottom {
  position: absolute;
  bottom: 40px;
  color: white;
  font-size: 1.5em;
  text-align: center;
  margin: 0;
  padding: 10px;
}


.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  transition: background-color 0.3s;
  z-index: 100;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}


.prev {
  left: 20px;
}

.next {
  right: 20px;
}


@media (max-width: 768px) {
  .slide-text-center {
      font-size: 2em;
  }

  .slide-text-bottom {
      font-size: 1.2em;
      bottom: 20px;
  }
}