* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Roboto', sans-serif;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Slideshow */
.slideshow {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 10s infinite alternate;
}

.slide1 {
  background-image: url("images/1.jpg");
  animation-delay: 0s;
}

.slide2 {
  background-image: url("images/2.jpg");
  animation-delay: 5s;
}

@keyframes fade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

/* İçerik Kutusu */
.content-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 51, 25, 0.5); /* daha saydam koyu yeşil */
  padding: 40px 60px;
  border-radius: 40px; /* daha oval kenarlar */
  z-index: 1;
  width: 90%;
  max-width: 700px; /* biraz daha uzun olsun */
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
}


.logo {
  width: 100px;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px black;
}

p {
  font-size: 20px;
  font-style: italic;
  color: #ddd;
  text-shadow: 1px 1px 2px black;
}
