body {
    font-family: 'Special Elite', helvetica-neue, helvetica, tahoma, sans-serif;
    font-size: 14px;
    background-color: white;
    line-height: 1.4em;
}

.thumbnail {
    width: 200px;
    height: 200px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;
    position: absolute;
    top: 10px;
    left: 10px;
}

.wrapper {
    position: relative;
    display: inline-block;
    float: left;
    width: 220px;
    height: 400px;
    cursor: pointer;
}

.wrapper:hover {
    background-color: rgb(220, 220, 220);
}

.wrapper:hover .thumbnail {
    background-color: rgb(220, 220, 220);
}

.text {
    position: absolute;
    top: 220px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    color: rgb(65, 65, 65);
}

.text .date {
    font-weight: bold;
    margin-bottom: 1em;
    text-align: center;
    width: 100%;
}

.text .description {
    margin-bottom: 1em;
}

.text .people {
    font-style: italic;
}

.header ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.header li {
    display: inline-block;
    font-size: 24px;
    margin-right: 10px;
    cursor: pointer;
    color: #5186ff;
}

.header li:hover {
    text-decoration: underline;
}

.header {
    margin-bottom: 20px;
}

.person {
    display: block;
    clear: both;
}

.person .name {
    font-size: 24px;
    font-weight: bold;
    padding: 20px 0 20px 0;
}

#search {
    border: 2px solid rgb(150, 150, 150);
    font-family: 'Special Elite', helvetica-neue, helvetica, tahoma, sans-serif;
    font-size: 20px;
    padding: 5px;
    display: inline-block;
    width: 500px;
    position: absolute;
    top: 0;
    right: 10px;
    outline: none!important;
    moz-box-shadow: inset 0 1px 3px rgba(34,25,25,0.4);
    webkit-box-shadow: inset 0 1px 3px rgba(34,25,25,0.4);
    box-shadow: inset 0 1px 3px rgba(34, 25, 25, 0.4);
    -webkit-appearance: none;
    border-radius: 5px!important;
    margin-top: 5px;
}

.mover {
    display: block;
    position: fixed;
    z-index: 100;
}

.mover .border {
    background-color: white;
    cursor: pointer;
    position: absolute;
}

.mover .image {
    display: block;
    position: absolute;
    background-size: cover;
    background-positin: center;
    background-repeat: no-repeat;
}

.cover {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: black;
    background-color: rgba(0, 0, 0, .9);
}

.mover .text {
    position: absolute;
    left: 0;
    right: 0;
    height: 200px;
    color: rgb(220, 220, 220);
}

.mover .text .date {
    text-align: left;
    margin-bottom: 20px;
}

.mover .close {
    position: absolute;
    right: 0;
    top: -10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 3px;
}

.mover .close .icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    left: 5px;
    background-image: url(close.png);
    background-size: 40px 20px;
    background-position: 0 0;
}

.mover .close:hover {
    background-color: white;
}

.mover .close:hover .icon {
    background-position: 20px 0;
}

.wrapper .text .description {
    text-align: justify;;
}