*{
    box-sizing: border-box;
}

body{
    background-color: #222;
}

#menu-button{
    position: fixed;
    top: 5px;
    left: 5px;
    width: 40px;
    cursor: pointer;
}

#menu-button div{
    height: 5px;
    margin: 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}


.bar1{
    background-color: orangered;
    width: 30px;
}

.bar2{
    background-color: white;
    width: 17px;
}

#menu-button:hover .bar1{
    background-color: white;
}

#menu-button:hover .bar2{
    background-color: orangered;
}


.message{
    color: black;
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    padding: 20px;
    font-style: italic;
    margin: 50px auto;
    width: 50vw;
    line-height: 2.0;
    font-weight: 600;
    transition: 0.5s;
    cursor: pointer;
}

.message-intro{
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}


.poem{
    background-color: orangered;
    color: black;
    border-radius: 10px;
    margin: auto;
    width: 50vw;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-size: larger;
    transition: 0.5s;
    cursor: pointer;
    margin-bottom: 50px;
}


img{
    position: fixed;
    top:10px;
    left: 10px;
    width:0;
    height: auto;
    overflow-x: none;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 2;
}

body.menu-open img{
    width: 500px;
}

#overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#content{
    transition: all 0.3s ease;
}

body.menu-open #overlay{
    display: block;
    overflow: hidden;
}

body.menu-open #content{
  opacity: 3%;
  overflow: hidden;
}
