* {
    font-family: Helvetica, sans-serif;
    box-sizing: border-box;
    text-align: center;
}
body {
    background-color: lightsalmon;
    text-align: center;
}
main {
    display: flex;
}
aside {
    width: 30%;
}
aside > div {
    overflow: auto;
}
.search {
    height: 400px;
}
input {
    text-align: start;
}
.author {
    background-color: darksalmon;
    height: 100px;
}
section {
    background-color: darksalmon;
    width: 70%;
    height: 500px;
    overflow: auto;
}
.filter {
    font-style: italic;
    font-size: 200%;
    padding: 10px;
}
.filter:hover {
    color: ghostwhite;
}
img {
    width: 100%;
}
table, td {
    border: 1px dotted maroon;
}
table {
    width: 70%;
    margin-inline: auto;
}