.index{
  background-color: hsl(86, 100%, 78%);
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
}
.about{
  background-color: hsl(86, 100%, 78%);
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
}
.poems{
  background-color: hsl(86, 100%, 78%);
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
}
.contact{
  background-color: hsl(86, 100%, 78%);
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
}
.kierrakoeberpoetry{
  background-color: hsl(86, 100%, 78%);
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
}

/* Style the navigation bar */
nav ul {
  list-style: none; /* Remove bullet points */
  padding: 0;
  margin: 0;
  display: flex; /* Make the list items horizontal */
  justify-content: center; /* Center the navigation bar */
  background-color: #8b00fc; /* Add a background color */
}

/* Style the list items */
nav ul li {
  margin: 0 15px; /* Add spacing between links */
}

/* Style the links */
nav ul li a {
  text-decoration: none; /* Remove underline */
  color: white; /* Set text color */
  font-weight: bold;
  padding: 10px 15px; /* Add padding around links */
  display: inline-block; /* Ensure padding applies properly */
}

/* Add hover effect */
nav ul li a:hover {
  background-color: #ff0095; /* Change background on hover */
  border-radius: 5px; /* Optional: Add rounded corners */
}

/* Breadcrumb navigation styles */
.breadcrumbs {
  font-size: 14px;
  margin: 10px 0;
  padding: 10px;
  background-color: #ff5a91; 
  border-radius: 5px; /* Rounded corners */
}

.breadcrumbs a {
  text-decoration: none; /* Remove underline */
  color: #00fcbd; 
  font-weight: bold;
}

.breadcrumbs a:hover {
  text-decoration: underline; /* Add underline on hover */
}

.breadcrumbs span {
  color: #555; /* Gray color for the current page */
}
.container{
    height: 15.25em;
    width: 31.25em;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
  .crab {
    height: 6.25em;
    width: 12.5em;
    background-color: #00ad0e;
    border-radius: 0 0 5em 5em;
    box-shadow: -0.62em 0.31em 0 0.31em #058f00;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 10em;
    bottom: 0;
    animation: move 3s infinite;
  }
  @keyframes move {
    50% {
      left: 3.12em;
    }
  }
  .hand {
    height: 6.25em;
    width: 16.25em;
    border: 0.62em solid #8c00ff;
    position: absolute;
    left: -2.5em;
    bottom: 3.12em;
    z-index: -1;
    border-radius: 0 0 9.37em 9.37em;
    border-top: none;
  }
  .claw-1-l,
  .claw-2-l {
    content: "";
    position: absolute;
    height: 3.75em;
    width: 1.87em;
    background-color: #8c00ff;
    border-radius: 3.75em 0 0 3.75em;
    bottom: 5.31em;
    transform-origin: 50% 100%;
    animation: claw-1-l 2s infinite;
  }
  .claw-1-l {
    left: -2.18em;
  }
  .claw-2-l {
    left: 13.43em;
  }
  @keyframes claw-1-l {
    50% {
      transform: rotate(-15deg);
    }
  }
  .claw-1-r,
  .claw-2-r {
    content: "";
    position: absolute;
    height: 3.75em;
    width: 1.87em;
    background-color: #8c00ff;
    border-radius: 0 4.37em 4.37em 0;
    transform-origin: 50% 100%;
    bottom: 5.31em;
    animation: claw-1-r 2s infinite;
  }
  .claw-1-r {
    left: -0.31em;
  }
  .claw-2-r {
    left: 15.31em;
  }
  @keyframes claw-1-r {
    50% {
      transform: rotate(15deg);
    }
  }
  .mouth {
    content: "";
    position: absolute;
    height: 0.93em;
    width: 1.87em;
    border: 0.43em solid #570c0e;
    border-radius: 0 0 2.5em 2.5em;
    border-top: none;
    top: 1.25em;
    left: 5em;
    z-index: 2;
  }
  .legs-1 {
    position: absolute;
    height: 2.5em;
    width: 0.62em;
    background-color: #ff0062;
    z-index: -1;
    top: 5em;
    left: 0.62em;
    box-shadow: 3.12em 0 hsl(337, 100%, 50%)#ff0062, 9.37em 0 #ff0062;
    animation: legs-1 1s infinite;
  }
  @keyframes legs-1 {
    50% {
      transform: translateY(-0.62em);
    }
  }
  .legs-2 {
    position: absolute;
    height: 2.5em;
    width: 0.62em;
    background-color: #ff0062;
    z-index: -1;
    top: 5em;
    left: 2.18em;
    box-shadow: 6.25em 0 #ff0062;
    animation: legs-1 1s 0.5s infinite;
  }
  @keyframes legs-2 {
    50% {
      transform: translateY(-0.62em);
    }
  }
  .eyes {
    position: absolute;
    height: 3.75em;
    width: 3.75em;
    background-color: #570c0e;
    border-radius: 50%;
    border: 0.93em solid #ffffff;
    bottom: 6.25em;
    left: 0.93em;
  }
  .eyes:before {
    position: absolute;
    content: "";
    height: 1.87em;
    width: 1.87em;
    background-color: #570c0e;
    border-radius: 50%;
    border: 0.93em solid #ffffff;
    bottom: -0.9em;
    left: 5em;
  }
  .footer{
    background-color: #8b00fc;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  .crabnana{
    height:500px;
    width:800px;
    position: absolute;
    right: 0%;
    top:13em;
  }