body {
    display: flex;
    height: 100vh;
    overflow: hidden;
    font-family: 'PT Serif', serif;
    color: #000
}

aside {
    width: 30%;
    height: 100%;
    background-image: url('img/flower-vertical.png');
    background-position: 50% 60%;
    background-size: cover;
}

main {
    flex: 1;
    background: #f5f5f5;
    overflow-y: scroll;
    padding: 24px;
}

h1 {
    font-family: 'Indie Flower', cursive;
    font-size: 60px;
    margin-bottom: 30px;
    margin-top: 24px;
    text-align: center;
}

h2 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

p,
li {
    font-size: 16px;
    line-height: 1.8em;
}

p,
ul {
    margin-bottom: 12px;
}

ul {
    list-style-type: disc;
}

li {
    margin-left: 24px
}