* {
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
.main-title {
    font-size: 48px;
    text-align: center;
    margin: 50px;
}
.story-title {
    font-size: 28px;
    font-weight: normal;
    font-style: italic;
    text-align: center;
}
.content {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.story {
    padding: 10px;
    border: 1px solid black;
}
.quarter {
    width: 25%;
}
.half {
    width: 50%;
}
.story-text {
    font-size: 18px;
    line-height: 1.5;
}
.story-image {
    width: 100%;
}
.left {
    border-top: 4px solid #000;
    border-right: none;
}
.middle {
    border-top: 4px solid #000;
}
.right {
    border-top: 4px solid #000;
    border-left: none;
}
.nav-links {
    width: 75%;
    border-top: 4px solid #000;
    padding: 0;

}
.nav-links {
    display: flex;
    flex-direction: column;
}
.nav-item {
    padding: 20px;
    display: flex;
    align-items: center;
    flex: 1;
}
.nav-item:nth-child(1) {
    background-color: #ffeaa7;
}
.nav-item:nth-child(2) {
    background-color: #81ecec;
}
.nav-item:nth-child(3) {
    background-color: #74b9ff;
}
.nav-item:nth-child(4) {
    background-color: #55efc4;
}
.nav-item:nth-child(5) {
    background-color: #a29bfe;
}
.nav-item a {
    text-decoration: none;
    color: grey;
    font-size: 24px;
    font-weight: bold;
}
.nav-item a:hover {
    text-decoration: underline;
}