/* Styling for the Paragraph Generator Page */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #cbcdce;
    color: #333;
    line-height: 1.6;
    padding-top: 80px;
  }
  
  header h1 {
    text-align: center;
    margin: 2rem 0;
    color: #102a42;
  }
  header nav ul {
    list-style: none;
    display: flex;
    padding: 0;
  }
  
  header nav ul li {
    margin: 0 15px;
  }
  
  header nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  header nav ul li a:hover {
    color: #000000;
    background-color: #f0b429;
    padding: 5px;
    border-radius: 5px;
  }
  .paragraph-generator {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
  }
  
  .paragraph-generator h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .paragraph-generator input {
    width: 50px;
    padding: 5px;
    font-size: 1rem;
    margin-right: 10px;
  }
  
  .paragraph-generator button {
    padding: 10px 20px;
    background-color: #085fb1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    animation: bounce 2s infinite; /* Applying the bounce animation */
  }
  
  .paragraph-generator button:hover {
    background-color: #f0b429;
  }
  /* Bounce Animation Keyframes */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); /* No movement */
  }
  40% {
    transform: translateY(-20px); /* Moves up by 20px */
  }
  60% {
    transform: translateY(-10px); /* Moves up slightly by 10px */
  }
}
  .generated-text {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #617d98;
  }
  