* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #ddd;
}

.container {
    max-width: 650px;
    margin-left: 150px;
    /* border: solid 1px #33f; */
}

.big-title {
    font-size: 2rem;
    font-weight: bold;
    padding: 0.25rem;
    color: #33f;
    text-align: center;
    /* background-color: white; */
}

.big-title,
.language,
.title,
.undertitle,
.text {
    padding: 0.25rem;
    border: solid 1px #33f;
    margin-bottom: 10px;
    box-shadow: 5px 5px 10px #33f;
}

.article {
    margin-bottom: 20px;
    padding: 1rem;
    background-color: rgb(170, 250, 170);
    border: solid 1px rgb(250, 160, 250);
    box-shadow: 5px 5px 10px rgb(250, 160, 250);
}

.language {
    font-style: italic;
    font-weight: bold;
}

.content {
    /* background-color: cadetblue; */
    
    margin-bottom: 15px;
}

.title {
    /* background-color: brown; */
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.article-body {
    /* background-color: blueviolet; */
}

.undertitle {
    background-color: #33f;
    color: #3f3;
    font-weight: bold;
    /* background-color: aqua; */
}

.text {
    /* background-color: antiquewhite; */
}