body {
    background-image: url("/images/redsparkle.gif");
}

.header {
    display: flex;
    justify-content: space-between;
    margin-right: 10rem;
}

.headerText {
    display: flex;
    margin-left: 10rem;
    color: #fbb8b8;
}

.backLink {
    color: #fbb8b8;
}

.backLink:hover {
    color: #c06060;
}

.centerContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.sideBar {
    border: 4px solid rgb(230, 126, 126);
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 30px;
    background-color: #400d0d;
    margin-left: 10rem;
    max-width: 20rem;
}

.sideBarText {
    text-wrap: wrap;
    color: #f6e4e4;
    font-family: 'Space Mono', monospace;
}

.blogDate {
    color: #f6e4e4;
    font-family: 'Space Mono', monospace;
}

.postNavLink {
    color: #f6e4e4;
    font-family: 'Space Mono', monospace;
}

.postNavLink:hover {
    color: #e17575;
}

.postNavLink:visited {
    color: #b74242;
}

.centerContainerContent {
    border: 4px solid rgb(230, 126, 126);
    padding: 30px;
    background-color: #400d0d;
    overflow: hidden;
    width: 60%;
    margin-right: 10rem;
}

.blogText {
    color: #f6e4e4;
    font-family: "Kanit", sans-serif;
    font-size: 0.9rem;
}

.blogTitle {
    background-image: linear-gradient(180deg, rgba(251, 184, 184, 0.5) 50%, rgba(215, 59, 59, 0.5) 100%);
    border-radius: 1rem;
    border-top: 0.3rem solid rgb(186, 126, 126);
    padding: 0.3rem;
    padding-left: 3rem;
    font-family: 'Space Mono', monospace;
}

.divider {
    display: flex;
    justify-content: center;
    height: 5%;
    padding: 1rem;
}