body {
    background-color: #B9B794;
    height: 100vh;
    margin: 20px;
}

.title {
    margin: 0px auto;
    text-align: center;
}

/* Outer grid */
#content {
    /* width: 80vw; */
    /* height: 80vh; */
    display: grid;
    grid-gap: 5px;
    grid-template-areas:
        "encouragement  hamburger"
        "correction     hamburger"
        "follow-up      hamburger"
    ;
}

/* Top */
#encouragement {
    grid-area: encouragement;
}

/* Middle */
#correction {
    grid-area: correction;
}

/* Bottom */
#follow-up {
    grid-area: follow-up;
}

/* Burger */
#hamburger {
    grid-area: hamburger;
}

#hamburger-BLT {
    max-height: 300px;
    vertical-align: middle;
}

/* All content boxes */
#content>* {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background-color: white;
    padding: 1rem;
    transition: 0.3s;
    padding: 30px;
    /* transition property should be put onto the parent of the :hover pseudoclass */

}

h2 {
    margin: 0px;
    padding: 0px;
}

/* override default <ul> margins by the user agent */
ul {
    margin: 0px;
    padding: 0px;
}