body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header {
    font-size: 20px;
    display: flex;
    border-bottom: 1px solid #000;
    padding: 10px 20px;
    align-items: center;
}

.logo {
    color: lightgreen;
    background-color: rebeccapurple;
    margin-right: 50px;
    text-decoration: none;
    font-weight: 700;
    padding: 5px 15px;
}

ul {
    display: flex;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

ul > li {
    margin-right: 30px;
}

ul > li:last-child {
    margin-right: 0;
}

a {
    color: rebeccapurple;
    font-weight: 700;
    text-decoration: none;
}

.box {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
    border-bottom: 1px solid #000;
}

.aside {
    /* border-right: 1px solid #000; */
    /* padding-right: 20px; */
    background-color: lavender;
    padding: 10px 20px;
}

.post {
    padding-bottom: 20px;
}

section {
    background-color: lavender;
    padding: 5px 20px;
    margin-bottom: 20px;
}

.link {
    background-color: rebeccapurple;
    color: white;
    padding: 8px 15px;
    margin-left: 10px;
}

footer {
    font-size: 13px;
    padding-left: 20px;
    padding-right: 20px;
}