* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #fff1f6;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

/* Arka plan */
.header {
  position: relative;
  display:flex;
  width: 100%;
  justify-content: center;
}

.header-bar {
  height: 80px;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

.header-logo {
  position: absolute;
  top: -160px;
  width: 50%;
  height: auto;
  z-index: 1;
}

.main-card{
  position: relative;
  width: 100vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 8px solid white; 
}

.logo{
  position:absolute;
  width: 100vw;
  height: 100vh;
}

/* Çerçeve ve ikonlar */
.info-card {
  position: relative ;
  background-color: #fff;
  border: 20px solid purple;
  border-radius: 50px;
  height: auto;
  width: 50vw;
  z-index: 3;
}

.ikonlar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  z-index: 5;
}

.ikonlar img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
  z-index: 5;
}

.ikonlar img:hover {
  transform: scale(1.2);
  z-index: 5;
}

.info-text {
  margin: 24px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* Karakterler */
.karakter {
  position: absolute;
}

.karakter img {
  width: 100%;
}

/* Karakter pozisyonları */
.tavsan {
  bottom: -50%;
  right: -30%;
  width: 40%;
  z-index: 4;
}

.erkek {
  top: 9%;
  left: -30%;
  width: 30%;
  z-index: 2;
}

.kiz {
  top: 60%;
  left: -15%;
  width: 30%;
  z-index: 4;
}

.footer {
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  z-index: 999;
  background-color: purple;
  border-top: 4px solid white;
}

.footer-text {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: white;
}

@media (max-width:1200px) {
  .header-logo {
    top: -40% ;
    width: 75%;
  }

  .info-card {
    border: 15px solid purple;
    /* width: 65vw; */
  }
  
  .tavsan {
    bottom: -40%;
  }
}
@media (max-width: 992px) {
  .header-bar {
    height: 12vh;
  }

  .header-logo {
    top: -30%;
    width: 65%;
  }

  .info-card {
    border: 15px solid purple;
    width: 65vw;
  }

  /* Karakter pozisyonları */
  .karakter img {
    width: 150px;
  }

  .tavsan {
    bottom: -30%;
  }

  .erkek {
    top: 30%;
    left: -26%;
  }
}
@media (max-width: 768px) {  
  .header-logo {
    top: -12% ;
    width: 75%;
  }

  .main-card {
    height: 90%;
  }

  .info-card {
   margin-top: 0px;
  }

  .header-logo {
    top: -23%;
   
  }
    
  .tavsan {
    bottom: -28%;
  }

  .erkek{
    top: 40%;
    left:-35%;
  }

  .kiz{
    top: 70%;
    left: -20%;
  }

  .ikonlar img {
    width: 50px;
    height: 50px;
  } 
}

/* Responsive */
@media (max-width: 600px) {
  .header-bar {
    height: 7vh;
  }
  
  .header-logo {
    top: -20% ;
    width: 75%;
  }

  .info-card {
    border: 10px solid purple;
    width: 65vw;
  }
  
  .karakter img {
   width: 120px;
  }

  .ikonlar img {
    width: 40px;
    height: 40px;
    gap: 15px;
  }

  .ikonlar {
    gap: 15px;
  }
  

  .erkek{
    top: 50%;
    left:-35%;
  }

  .kiz{
    top: 80%;
    left: -20%;
  }

  .tavsan {
    bottom: -12%;
    right:-25%
  }

}

@media (max-width: 450px) {
  .header-bar {
    height: 9vh;
  }
  
  .header-logo {
    top: -12% ;
    width: 75%;
  }

  /* Çerçeve ve ikonlar */
  .info-card {
    border: 10px solid purple;
    width: 70vw;
  }

  .karakter img {
    width: 100px;
  }

  .ikonlar {
    gap: 10px;
  }
  
  .ikonlar img {
    width: 35px;
    height: 35px;
  }

  .erkek{
    top: 60%;
    left:-30%;
  }

  .kiz{
    top: 80%;
    left: -20%;
  }

  .tavsan {
    bottom: -15%;
    right:-20%
  }
}

@media (max-width: 350px) {
  .karakter img {
    width: 90px;
  }

  .erkek{
    left:-35%;
  }

  .kiz{
    left: -20%;
  }

  .tavsan {
    bottom: -10%;
  }

}

