body {
    background-color: #F9F7FE;
    color: #272142;
    font-family: 'Times New Roman', Times, serif;
}

a {
    color: #885DF1;
}

.about {
    font-size: 16px;
    margin: 0px;
}

.blink {
    animation: blink-animation 1s steps(5, start) infinite;
}

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

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

.container {
    line-height: 1.5;
    margin: 60px auto;
    max-width: 600px;
}

footer {
    text-align: center;
}

form {
    display: flex;
}

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

.form-submit-button {
    background-color: #885DF1;
    border: none;
    border-radius: 50px;
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    margin-left: 10px;
    padding: 14px 24px;
}

.form-user-instructions {
    border: 1px solid rgba(39, 33, 66, 0.5);
    border-radius: 50px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 20px;
    width: 80%;
}

h1 {
    font-size: 36px;
    margin: 0px 0px 5px;
}

header {
    margin-bottom: 30px;
}

.hint {
    color:rgba(39, 33, 66, 0.5);
    font-size: 16px;
    margin: 10px 0px 0px;
}

img {
    max-width: 150px;
}

.introduction {
    display: flex;
    justify-content: space-between;
}


.poem-author {
    color:#885DF1;
    font-weight: bold;
    margin-bottom: 0px;
}

.poem-container {
    background: #FFFFFF;
    border-left: 3px solid #885DF1;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 45px;
    padding: 10px 20px;
}

.shecodes-workshop {
    font-weight: bold;
}