body {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    padding: 2rem;
    background-color: lightgrey;
}

img{
    width:100%;
}

h1{
    color:#224977;
    font-size: 40px;
    background-color: rgba(211, 211, 211, 0.6);
    display: block;
}

a {
    color: white;
    
}

a:hover{
    color: #224977;
}

.button{
    background:#224977;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    padding: .5rem 1rem;
    text-transform: uppercase;
    transition: all .25s ease-out;
    text-decoration: none;
    margin-top: 2rem;
}

.button:hover{
    background: white;
    color:#224977;
    font-weight: 400;
    text-decoration: none;
}

.poem {
    background: rgba(211, 211, 211, 0.6);
    border-top: 1px solid #224977;
    display: block;
    padding: 1rem;
    text-decoration: none;
    transition: all .25s ease-out;

}

.poem:hover{
    text-decoration: none;
    padding-left: 2rem;
    background: #f2f2f2;
    
}

.poem h2{
    font-size: 18px; 
    color: dimgrey;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.poem-author {
    color: #f4f4f4;
    font-style: italic;
    margin-bottom: 0;
    font-weight: 100;
    letter-spacing: 1px;
}

.poem .date {
    color: #777;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
    
}

.poem-text{
    margin: 3rem 0;
    border-top: 1px solid #224977;
    border-bottom: : 1px solid #224977;
    
    color: dimgrey;
    letter-spacing: 1px;
    
}

.poem-text p{
    margin-bottom: 2rem;
}