
body {
  margin: 0;
  font-family: 'Gluten', cursive;
  background: #f8f2e3;
  color: #316152;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0px;
  z-index: 1000;
}

.logo {
  
  height: 205px;
   padding-top: 55px;
     margin-left: 40%;
      
}
/* BACKGROUND IMAGES (MATCH YOUR SITE STYLE) */
.background-layer {
  position: fixed;
  inset: 0;
  z-index: -1;

  background-image:
    url("images/background img 1.png"),
    url("images/background img 2.png"),
    url("images/characters backrgound.png");

  background-repeat: no-repeat;

  background-position:
    left -2% top 5%,
    right -2% top 20%,
    center bottom;
}

/* MAIN CONTAINER */
.container {
  max-width: 900px;
  margin: 120px auto 60px;
  padding: 40px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

h1 :hover {
animation: wiggle 0.4s ease;
}

h2 {
  margin-top: 40px;
  font-size: 22px;
 animation: wiggle 0.4s ease;
}

h2:hover {
 animation: wiggle 0.4s ease;
}

p {
  line-height: 1.6;
  font-size: 14px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
}

.section {
  margin-bottom: 30px;
}

.divider {
  height: 1px;
  background: #eee;
  margin: 30px 0;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    margin: 100px 20px 40px;
    padding: 25px;
  }

  h1 {
    font-size: 28px;
  }
}
