* {
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    margin: 0;
}
.article-title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background-color: #363636;
    padding: 20px;
}

.article-title-container h1 {
    font-size: 50px;
    color: #fff;
    max-width: 800px;
    text-align: center;
}

#article-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

ol {
    max-width: 800px;
}

ol li {
    font-size: 25px;
    margin: 25px;
    font-style: italic;
}

#author {
    font-weight: bolder;
    background-color: #363636;
    color: #fff;
}

.comment-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    margin: auto;
    left: 50%;
}

.comment-container h1 {
    font-size: 45px;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

input[type=text], textarea {
    margin: 5px 0;
    font-size: 20px;
    text-indent: 10px;
}

input {
    height: 50px;
}

textarea {
    resize: none;
}

input[type=submit] {
    border: none;
    border-radius: 15px;
    background-color: #29bd61;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #1c7c41;
}

.requests-e, .requests-o {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
    margin: 10px 0;
}

@media only screen and (max-width: 980px) {
    ol li {
        font-size: 15px;
    }

    .comment-container {
        width: 90%;
    }

    .requests-e, .requests-o {
        font-size: 15px;
        margin: 10px auto;
        left: 50%;
    }

    form {
        width: 100%;
        margin: auto;
        left: 50%;
    }
}