h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #f5faff;
    font-family: 'Text', sans-serif;
}

a {
    color: black;
    text-decoration: none;
}

section {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/*******************************************\
|                 Article                   |
/*******************************************/

.article-container {
    height: 100%;
    width: 55%;
    margin: 0 5%;
    display: flex;
    flex-direction: column;
    padding-bottom: 5vh;
}

article {
    padding: 1rem;
    display: flex;
    margin: 2.5% 0;
    border-radius: 6px;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 16px 48px #E3E7EB;
    font-family: 'Text', sans-serif;
}

article .post-title {
    font-size: 1.75rem;
    font-family: 'Title', sans-serif;
}

article .post-date {
    color: #9F9F9F;
    font-size: .85rem;
    text-indent: .75rem;
    margin-bottom: 3.5vh;
}

article p, article ul li {
    font-size: 1.2rem;
}

.content {
    margin-top: 15.5vh;
}

/*******************************************\
|                  Aside                    |
/*******************************************/

.aside-container {
    display: flex;
    flex-direction: column;
    width: 23%;
    margin: 0 1%;
}

.aside-container aside {
    margin: 5% 0;
    border-radius: 6px;
    font-family: 'Text', sans-serif;
    background-color: white;
    box-shadow: 0 16px 48px #E3E7EB;
}

.aside-container aside:first-child {
    margin-top: 0;
}

aside .aside-header {
    padding: .75rem;
    font-size: 1.5rem;
    background-color: #F7F7F7;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-family: 'Title', sans-serif;
}

aside .aside-text {
    color: black;
    padding: 1rem;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
}

aside .aside-btn-container {
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
}

aside .aside-btn {
    padding: .75rem;
    color: white;
    align-self: flex-end;
    transform: rotate(-1deg);
    background-color: #E22722;
}

aside .aside-event-name {
    font-weight: bold;
}

aside .aside-event-date {
    text-indent: 15px;
    font-size: 1.15rem;
}
