body {
    background-color:  	#fffeed;
    font-family:  "Libertinus Mono", monospace;
}

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

header {
    margin-bottom: 30px;
 }  

h1 {
    text-align: center;
    font-weight: 700;
    font-size: 35px;
    line-height: 1.5;
    color: #1a1c1a;
}

.form-container {
    padding: 25px;
    background-color: #f0e7d8;
    border-radius: 30px;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.09);
    margin-bottom: 30px;
}

form {
    display: flex;
}

.hint {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    opacity: 0.7;
}

.instructions {
    padding: 20px;
    border: 1px solid #ab9b96;
    border-radius: 30px;
    line-height: 24px;
    width: 80%;
    color: #3b5249;
}

.submit-button {
    margin-left: 15px;
    padding: 14px 24px;
    background-color: #ab9b96;
    color: #f3efe8;
    width: 150px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
}

.hidden {
    display: none;
}

.joke {
    background-color: #f3efe8;
    font-size: 16px;
    line-height: 30px;
    padding: 20px;
    border-left: 3px solid #6F0202;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.09);
}

a {
    color: #3b5249;
    text-decoration: none;
}

a:visited {
    color: #a63a50;
}

footer {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
}

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