/* display defaults */
body, html {
    color: #313130;
    font-family: 'nexa', sans-serif;
}
 table {
    width: 100%;
    border-collapse: collapse;
}
 th,
 td {
    padding: 1%;
    border:0;
}
 tr {
    border: 2px solid #FFF;
}
 tr:nth-child(odd){
    background: #f78000;
    color: #FFF;
}
 tr:nth-child(even){
    background: #f7a541;
    color: #FFF;
}

/**  styles button **/
.orange-background {
    display: inline-block;
    text-transform: none;
    color: #FFF;
    text-weight: bold;
    background: #f7a541;
    padding: 2% 3%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.orange-button {
    display: inline-block;
    text-transform: uppercase;
    background: #f7a541;
    margin: 10px 10px 10px 0;
}
.orange-button:hover {
    background: #f78000;
}

table.poetry tr td:last-of-type {
    position: relative;
    padding-left: 45px;
}
table.poetry tr td:last-of-type:before {
    content:"";
    position: absolute;
    left:10px;
    top:36%;
    width: 25px;
    height: 40px;
    background: url(../img/book.svg) no-repeat;
    background-size: contain;
}

.two-col {
    display: inline-block;
    width:50%;
    float:left;
}

.float-break {
    clear:both;
}