.article-all {
    max-width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 200px;
}

.article-date {
    display: flex;
    align-items: center;
}

.article-date label {
    width: 12vh;
    height: 23px;
    border-radius: 20px;
    background-color: #F0844A;
    color: white;
    font-weight: 600;
    text-align: center;
    margin-right: 20px;
}

.article-content h1 {
    border-bottom: 1px solid #6b6b6b;
    padding-bottom: 20px;
}

.article-content p {
    text-align: justify;
    padding-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    padding: 20px 0px;
}

.article-button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0px;
    border-top: 2px solid #6b6b6b;
}

.article-button button {
    width: 200px;
    height: 40px;
    color: white;
    font-weight: 900;
    border: 0px solid black;
    cursor: pointer;
}

#but-1 {
    background-color: #6b6b6b;
}

#but-1:hover {
    background-color: #929292;
}

#but-2 {
    background-color: #F0844A;
}

#but-2:hover {
    background-color: #dd763e;
}


@media (max-width: 1200px) {
    .article-all {
        padding: 80px 150px;
    }
}

@media (max-width: 920px) {
    .article-all {
        padding: 50px 100px;
    }
}

@media (max-width: 768px) {
    .article-all {
        padding: 50px 100px;
    }
}

@media (max-width: 540px) {
    .article-all {
        padding: 50px 50px;
    }
}

@media (max-width: 375px) {
    .article-all {
        padding: 50px 50px;
    }

    .article-content h1 {
        font-size: 18pt;
    }

    .article-button {
        flex-direction: column-reverse;
        width: 100%;
        padding: 20px 0px;
        border-top: 1px solid #6b6b6b;
    }

    .article-button button {
        width: 100%;
        height: 40px;
        color: white;
        margin-top: 10px;
    }
}