body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

header {
  display: flex;
  align-items: center;
  background-color: #305886;
  color: white;
  padding: 20px 20px;
}

.logo {
  height: 50px;
  margin-right: 20px;
}

h1 {
  font-size: 1.5em;
  margin: 0;
}

.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 24px;
  padding: 12px;
  color: white;
  background: rgba(0,0,0,0.5);
  border: none;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
}

.prev { left: 10px; }
.next { right: 10px; }


.slideshow {
  position: relative;
  width: 100%;
  height:890px;
  overflow: hidden;
  background-color: #000;
}


.slide {
  position: relative;
  width: 100%;
  object-fit: cover;
  display: none;
  z-index: 1;
}

.slide.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}


.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}


.overlay-boxes {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 10px;
  z-index: 2;
}


.box {
  background-color: white;
  color: #305886;
  padding: 10px;
  width: 200px;
  height: 100px;
  text-align: center;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.box:hover {
  border-color: #555;
  background-color: #e0e0e0;
  transform: scale(1.05);
}


footer.wh_footer {
  background-color: #305886;
  position: sticky;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 0.9em;
  z-index:1000;
}

footer.wh_footer a {
  color: #ffffff;
  text-decoration: none;
}

footer.wh_footer a:hover {
  text-decoration: underline;
}

footer .generation_time {
  margin-top: 10px;
  font-style: italic;
  font-size: 0.85em;
}
