body{
   background-image: url('roam-in-color-RryFk4n-vOs-unsplash.jpg');
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: fixed;
   font-family: Arial, Helvetica, sans-serif;
}
.container{
   margin: 120px auto;
   max-width: 800px;
   backdrop-filter: blur(10px);
   border-radius: 10px;
   box-shadow: 10px 10px 10px #6b705c;
   padding: 10px 10px;
}
header{
   margin-bottom: 30px;
}
h1{
   color: #6b705c;
   text-shadow: 0 2px 4px rgba(10, 79, 82, 0.18);
   font-weight: 700;
   font-size: 36px; 
   line-height: 1.5;
   text-align: center;
}
h2{
   color: #6b705c;
   text-shadow: 0 2px 4px rgba(10, 79, 82, 0.18);
   font-weight: 500;
   font-size: 20px; 
   line-height: 1.5;
   text-align: center;
}
.form-wrapper{
   margin-bottom: 30px;
   background-color:#b7b7a4;

   padding: 30px; 
   box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
   
}

form{
   display: flex;
 
}
.hidden{
   display: none;
}
.hint{
   line-height: 1.5;
   font-size: 12px;
   margin-top: 5px;
   opacity: 0.6; 
}
.input{
   padding: 16px; 
   border: 1px solid rgba(219, 219,219,1);
   width: 80%;
   border-radius: 20px;
   color: black;
}
.submit-button{
    background: linear-gradient(
    225deg,   #9aa58b 0%,
    #6b705c 12%,
    #55604a 55%,
    #394233 100%
       );
   margin-left: 10px; 
   background-color:#6b705c;
   color:#f2f4ffff; 
   border: none; 
   border-radius: 20px;
   padding: 14px 24px;
   font-size: 16px;
}
.submit-button:hover {
    background: linear-gradient(
        225deg,
        #394233 0%,
        #55604a 45%,
        #6b705c 88%,
        #9aa58b 100%
    );
}
.poem{
   font-size: 18px; 
   color: #6b705c;
   background-color:#b7b7a4;
   padding: 20px; 
   line-height: 2;
   border-left: 3px solid rgba(10, 79, 82, 0.18);;
   box-shadow: 0px 20px 60px rgba(39, 33, 66, 0.03);
   margin-bottom: 10px;
}
footer{
   text-align: center;
   font-size: 13px;
   margin-top: 30px;
   margin-bottom: 30px;
   background-color: #FFF6F0;
}
a{
   color: #4b503e;
}
.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {  
  50% { opacity: 0; }
}