* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

a {
    /* text-decoration: none; */
    color:rgb(65, 65, 65);

}

.main-container {
    display: flex;
    background: rgb(234, 234, 234);
    height: 100vh;
    flex-direction: column;
    padding: 5em;
    align-items: stretch;
    font-family:'Courier New', Courier, monospace;
    font-size: 1.5em;
    flex-wrap: wrap;
}

.upper {
    /* background: thistle; */
    border: 1px solid grey;
    /* width: 50%; */
    height: 33%;
    display: flex;
    /* gap: 0.9em; */
    align-items: center;
    justify-content: space-evenly;
}

.upper-item {
    height: 100%;
    border-style: solid;
    border-width: 0px 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    text-align: center;
}

.middle {
    border: 0.5px solid grey;
    /* background: red; */
    /* width: 50%; */
    height: 33%;
    display: flex;
    /* gap: 0.9em; */
    align-items: center;
    justify-content: space-evenly;
}

.middle-item {
    height: 100%;
    border-style: solid;
    border-width: 0px 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    text-align: center;
}

.lower {
    display: flex;
    /* background: green; */
    /* width: 50%; */
    height: 33%;
    border: 1px solid grey;
    /* gap: 0.9em; */
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
}

.lower-item {
    border-style: solid;
    border-width: 0px 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
}

.rhyme {
    font-style: italic;
}

.refrain:hover {
    background:rgb(221, 221, 221);
}