body {
    background-color: rgb(20, 20, 20);
    font-family: sans-serif;
    color: rgb(210, 210, 210);
}

header {
    display: flex;
}

header a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: rgb(210, 210, 210);
    margin: auto;
}

main section {
    width: 80%;
    min-height: 500px;
    margin: auto;
    padding: 10px 0;
    border: 1px solid rgb(80, 80, 80);
    border-radius: 10px;
    text-align: center;
}

main section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

main section form textarea {
    display: block;
    width: 700px;
    height: 200px;
    resize: vertical;
    border-radius: 5px;
    background-color: transparent;
    color: white;
    font-size: 20px;
}

main section form button {
    transition: 0.3s;
    display: block;
    width: 700px;
    height: 50px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
}

main section form button:hover {
    transition: 0.3s;
    background-color: rgb(185, 185, 185);
}

footer {
    text-align: center;
}

#authors {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

#authors div img {
    width: 100px;
    border-radius: 20px;
}