body{
    background-color: #2A2154;
    font-family: Arial, Helvetica, sans-serif;
}

.container{
    margin: 120px auto;
    max-width: 600px;
}

a{
    color: #885df1;
}

header{
    margin-bottom: 30px;
}

h1{
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.5;
    color: white;
}

.main-text{
    color:white;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
}

.form-container{
    background-color: white;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 20px 60px rgb(65, 50, 100, 0.08);
    padding: 15px 20px;
    color: black;
}

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

form{
   
    display: flex;
}

.instructions{
    padding: 16px;
    border: 1px solid rgba(148, 148, 150, 0.5);
    width: 80%;
    font-size: 16px;
    border-radius: 50px;
    line-height: 20px;
    

}

.submit-button{
    margin-left: 10px;
    background-color: #885df1;
    border: none;
    color: white;
    width: 150px;
    font-size: 16px;
    border-radius: 50px;
    padding: 12px 24px;
}

.idea{
    font-size: 16px;
    background-color: white;
    padding: 30px;
    line-height: 2;
    border-left: 4px solid #885df1;
    box-shadow: 0px 4px 30px 0px rgba(39,33,66,0.03);
 }

 .hidden{
    display: none;
 }

 footer{
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
    color: white;

 }

 @keyframes blink {
  50% {
    opacity: 0.0;
  }
}
.blink {
  animation: blink 1s step-start 0s infinite;
}