body {
    background-color:black;
    color: slategray;
    text-align: center;
    padding: 0 10px;
}

.blog-title {
    font-size: 2rem;
    color: orangered;
}

.articles {
    max-width: 1200px;
    margin: 0 auto;
}

.articles article {
    border-bottom: 2px dotted lightcoral;
}

.articles h1 {
    color: coral;
}

.articles h2 {
    color: lightblue;
}

.articles p {
    color: lightgray;
}

@media screen and (max-width: 1000px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    h3 {
        font-size: 1rem;
    }
}