body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #a7d14d;
    color: #393e46;
    margin: 0;
    padding: 0 10px;
}
a {
    color : #ffff
}
.container {
        margin : 120px auto;
        max-width: 600px;
}

header {
        margin-bottom: 40px;
}

h1 {
    text-align: center;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.5;
    color: #000;
}



.form-container {
    background-color: whitesmoke;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0px 20px 40px rgba(51, 61, 40, 0.9);
    padding: 15px 20px;
}
form {
    display: flex;
}

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

.instructions {
    padding: 40px;
    border: 1px solid rgba(40, 35, 60, 0.5);
    width: 90%;
    font-size: 16px;
    border-radius: 50px;
    line-height: 20px;
    color: #89eb78;
}
input[type="text"] {
    flex: 1;
    font-size: 16px;
    padding: 14px 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    outline: none;
}

.submit-button {
    margin-left: 10px;
    background: #a7d14d;
    color: #ffff;
    border: none;
    width: 150px;
    font-size: 16px;
    border-radius: 50px;
    padding: 14px 25px;
    cursor: pointer;
}

footer {
    text-align: center;
    font-size: 14px;
    color: #f3eded;
    margin-bottom: 40px;
}
footer a {
    color: #000;
    font-weight: bold;
}
footer a:hover {
    text-decoration: underline;
}
footer {
    margin-top: 40px;
}

@keyframes blink-animation {
    to { visibility: hidden;}   
}
@-webkit-keyframes blink-animation {
    to { visibility: hidden;}
}