/* Genel Stil */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: url('../assets/images/background.jpg') no-repeat center center fixed; /* Arka plan resmi */
  background-size: cover; /* Arka planı ekran boyutuna göre ayarla */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Logo Alanı */
.logo {
  position: absolute;
  top: 20px;
  text-align: center;
  width: 100%;
}

.logo img {
  max-width: 200px; /* Logonun boyutunu ayarla */
  height: auto;
}

/* Harita Alanı */
.svg-turkiye-haritasi {
  width: 90%; /* Haritanın genişliği cihaz ekranına göre ayarlanır */
  max-width: 1200px; /* Haritanın maksimum genişliği */
  margin-top: 100px; /* Logo ile araya boşluk bırak */
  display: flex;
  justify-content: center; /* Haritayı yatayda ortala */
}

.svg-turkiye-haritasi svg {
  width: 100%; /* Haritanın genişliği tamamen kapsar */
  height: auto; /* Yükseklik oranı korunur */
}
