ul.items, li.item {
    list-style: none;
}

ul.items{
    margin: 3.8em auto 0;
    padding: 1em 0;
    background-color: white;
}
@media only screen and (max-width: 600px) {
    ul.items{
         margin: 2em auto 0;
    }
 }
 li.item {
    width: 80%;
    margin-left: 10%;
    margin-bottom: 4em;
}

div.media *{
    max-width: 100%;
}

audio, video {
    cursor: pointer;
}

div.media-label {
    padding-top: 5px;
    font: 14px sans-serif;
}

/* pagination */
.pagination{
    display: inline-block;
    position: fixed;
    bottom: 0.8em;
    right: 10%;
    width: 80%;
    font-size: 1.2em;
    background: white;
}
.pagination span:first-child {
    display: inline-block;
    width: 2em;
}
.pagination a {
    display: inline-block;
    color: black;
    text-decoration: none;
    width: 2em;
}

.pagination a.active, .pagination span:first-child {
    background-color: #e91e63;
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: lightgrey;
}
