html {
    background-color: aliceblue;
    background: repeating-linear-gradient(90deg, aliceblue 0px 2px, rgb(224, 224, 224, 0.8) 2px 4px);
}

body {
    width: 80%;
    margin: 20px auto;
    border: solid;
}

header {
    display: flex;
    justify-content: space-between;
    background-color: midnightblue;
    color: antiquewhite;
    padding: 15px;
}

img {
    width: 60px;
    height: 60px;
    border-radius: 10%;
    margin: auto 0;
}

main {
    display: flex;
}

article {
    flex: 3;
    background-color: antiquewhite;
    padding: 15px;
}

aside {
    flex: 1;
    background-color: wheat;
    padding: 15px;
}

h3 {
    margin-bottom: -2px;
}

h5 {
    margin-bottom: -10px;
}

.smaller {
    font-size: 0.9em;
    margin-top: -1em;
}

.date-info {
    display: flex;
    margin-bottom: 15px;
}

.date-info div:first-child {
    flex: 1;
    text-align: right;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid;
    background-color: antiquewhite;
}

.date-info div:nth-child(2) {
    flex: 4;
}

td:first-child {
    text-align: right;
}
