@charset "utf-8";

body {
    background-color: #4c4c4e2a;
}

.container {
    max-width: 1000px;
    margin: 30px auto;
}

.title {
    text-align: center;
    font-size: 3.2rem;
    margin: 60px 0;
}

@media screen and (min-width:768px) {
    .title {
        font-size: 4.8rem;
        margin: 120px 0;
    }
}


.articles {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.article-item {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item a {
    text-decoration: none;
    display: block;
    transition: opacity 0.2s;
}

.article-item a:hover {
    color: red;
    opacity: 0.7;
}

.article-number {
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.article-title {
    font-size: 2.6rem;
    margin-bottom: 8px;
}

@media screen and (min-width:768px) {
    .article-number {
        font-size: 3.6rem;
        margin-bottom: 8px;
    }

    .article-title {
        font-size: 3.4rem;
        margin-bottom: 20px;
    }
}