body {
font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
    background-image: linear-gradient(rgba(0, 0, 0, 0.900),rgba(0, 0, 0, 0.900)) , url(/src/images/BARBOTBG.jpg);
    color: rgb(156, 156, 156);
}

.container {
    margin: 120px auto;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.74);
    border-radius: 50px;
}

header {
    margin-bottom: 30px;
}



h1 {
      font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
    text-align:center;
    font-weight: 800;
    font-size: 60px;
    line-height: 2.5;
    color:rgb(255, 255, 255);

}


   h1 span {
    font-family: "Sedgwick Ave Display", cursive;
        font-weight: 400;
            font-size: 60px;
   }



a {
    color: rgb(255, 132, 132);
    transition: color 0.3s ease; 
    text-decoration: none
}

a:hover {
    color: rgb(200, 50, 50);
}

.form-container {
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: 0px 20px 60px rgba(255, 37, 226, 0);
    border-radius: 10px;
    margin-bottom: 30px;
}


form {
    display: flex;
}

.hint {
    line-height: 1.5;
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.6;
}

.instructions {
    padding: 16px;
    border: 1px solid rgb(255, 132, 132);
    width: 80%;
    border-radius: 50px;
    line-height: 20px;
    color: rgb(0, 0, 0);
}

.submit-button {
    margin-left: 10px;
    background-color:rgb(255, 132, 132);
    color: white;
    width: 150px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    transition: background-color 0.3s ease, color 0.3s ease;

}

.submit-button:hover {
    background-color: rgb(200, 50, 50);
    color: #f0f0f0; 
}

.poem {
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.212);
    padding: 20px;
    line-height: 24px;
    border-left: 2px solid rgb(255, 132, 132);
    box-shadow: 0px 4px 30px 0px rgba(255, 37, 37, 0.137);
}

.hidden {
    display: none;
}


.poem strong {
color: rgb(255, 132, 132);
}

footer {
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
        padding: 15px 20px;

}

@keyframes blink-animation {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.generating {
  animation: blink-animation 1s ease-in-out infinite;
}