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;
}

/* All content boxes */
#content>* {
    display: flex;
    align-items: center;
    /* width: 70%; */
    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 */

}

#content>section>ul {
    justify-content: center;
    width: 80%;
}

h2 {
    margin: 0px;
    padding: 0px;
    text-align: center;
}

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

/* Burger */
#hamburger {
    grid-area: hamburger;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

/* Hamburger images size */
#hamburger>* {
    width: 60%;
}

#hamburger>img {
    margin-bottom: -27px;
}

#hamburger>img:hover {
    opacity: 0.6;
}

#hamburger>img:nth-child(1) {
    /* Top Bun */
    z-index: 10;
    margin-bottom: -15%;
}

#hamburger>img:nth-child(2) {
    /* Middle */
    z-index: 9;
    margin-top: 6px;
    margin-bottom: -20%;
}

#hamburger>img:nth-child(3) {
    /* Bottom BUn */
    z-index: 8;
}