  body {
      font-family: 'Risque', sans-serif;
      background:#D1B084;
      color:#77572c;
      max-width: 700px;
      margin: 40px auto;
      padding: 20px;
      text-align: center; 
  cursor: grab;
}
/* NAV BAR */
nav {
  display: flex;
  justify-content: center;
  gap:30px;
  position: sticky;
  top: 0;
  background: #77572c;
  padding: 15px;
  z-index: 100;
}

/* LOGO */
.logo {
  width: 45px;
  height: 45px;
  position:absolute;
  left: 5px;}

nav a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

nav a:hover {
  color: white;
  text-shadow: 0 0 8px #8ea2e0;
}

/* current page */
.current {
  color: #feca57;
}


    h1 {
  font-size: 70px;
  color: #556988;
  font-weight: bold;
  text-decoration: underline;
  

  text-shadow:
    0 0 5px #8ea2e0,
    0 0 10px #8ea2e0,
    0 0 20px #8ea2e0;}

    h2 {
      font-size: 26px;color:#46568b;font-family:'Poppins';
    }

    img {
      width: 350px;
    }
   .rotateImg {
  width: 350px;
  height: auto;
  transition: transform 0.5s ease;

  border: 8px solid white;
  padding: 10px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.rotateImg:hover {
  transform: rotate(180deg);
}

.spinImg {
  width: 100px;
  height: auto;
  padding:20;

  animation: spin 3s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }

}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
    border: 8px solid white;
padding: 10px;
background: white;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);}
    .rotateImg:hover {
    transform: rotate(180deg);
    }
   

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #77572c;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 18px;
}