html {
    font-size: 24px;
}

body {
    background-color: mintcream;
}

article {
    background-color: white;
    width: 70%;
    margin-top: 5%;
    margin-inline: auto;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 5px 5px 15px 5px #000000;
}

.newspaper {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}

.name {
    font-size: 2rem;
    font-family: 'Times New Roman', serif;
}

.name,
.author {
    text-transform: uppercase;
}

.headline {
    font-size: 2em;
    font-weight: bold;
}

.sub-headline {
    font-weight: 100;
    font-size: 1.5em;
    font-style: italic;
}

.author {
    font-weight: bold;
}

.text {
    text-indent: 20px;
    line-height: 2em;
}

.text::first-letter {
    font-weight: bold;
    font-size: 2em;
}

.text-center {
    text-align: center;
}