body {
  font-family: Arial, sans-serif;
  background: #bc96ec;
  text-align: center;
  padding: 20px;
}








/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 96%;
  background: #000;
  color: #fff;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left .logo {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.nav-left .site-desc {
  font-size: 1.2em;
  font-weight: bold;
  background: linear-gradient(135deg, #5a25d4, #a8edea);
  width: 220px;
  height: 30px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.nav-left .site-desc:hover {
  background: rgb(18, 18, 143);
  color: yellow;
}

.nav-right a {
  background: linear-gradient(135deg, #5a25d4, #a8edea);
  color: white;
  padding: 10px 16px;
  margin: 0 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-right a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  background: rgb(18, 18, 143);
  color: yellow;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #5a25d4;
    text-align: center;
    margin-top: 10px;
    border-radius: 8px;
    padding: 8px 0;
  }

  .nav-right a {
    display: block;
    margin: 10px 12px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-right.active {
    display: flex;
  }
}

















h1 {
  
  margin-bottom: 30px;
}

h4 {
  color: yellow;
  background-color: blue;
  font-size: larger;
  font-weight: bolder;
  border-radius: 20px;

}


h2 {
  color: orangered;
}

#nesneler {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

#nesneler img {
  width: 100px;
  height: 100px;
  cursor: grab;
  border: 6px solid red;

  border-radius: 30px;
  background-color: #fff;
}

#kutular {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.kutu {
  width: 300px;
  min-height: 300px;
  background: wheat;
  color: rgb(255, 255, 255);
  border: 3px dashed #333;
  border-radius: 15px;
  padding: 15px;
}

.kutu h2 {
  text-align: center;
  margin-bottom: 15px;
}

.kutu img {
  width: 80px;
  height: 80px;
  margin: 10px;
}
img {
  mix-blend-mode: multiply; /* Beyaz arka planı yokmuş gibi gösterir */
  background: none;
}

#creator {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  font-weight: bold;
  color: white;
  background-color: #28a745;
  border: 8px solid #256029;
  margin-top: 20px;
  padding: 10px;
}

#creator h2 {
  color: yellow;
  font-size: 16px;
  text-decoration: underline;
}

#creator a {
  color: white;
  text-decoration: none;
}

#creator a:hover {
  color: yellow;
}
