@import url(reset.css);

html {
    font-size: 16px;
}

body {
    font-family: Verdana;
    background-color: rgb(189, 196, 219);
}

header {
    background-color: rgba(230,230,230,.6);
    height: 12vh;
    margin-bottom: 2rem;
    display: flex;
}

header a {
    display: block;
    height: 12vh;
    width: 12vh;
    background-image: url(../images/logo.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

header h1 {
    font-family: fantasy;
    text-align: center;
    letter-spacing: 15px;
    font-size: 4.5rem;
    line-height: 12vh;
    padding-left: 2rem;
}

main {
    display: flex;
    flex-flow: row wrap;
    width: 95vw;
    min-height: 75vh;
    margin: 0 auto;
}

.thumbnail {
    width: 10%;
    overflow: hidden;
}

.imgWrapper {
    width: 125%;
    overflow: hidden;
    margin-left: -16px;
}

.thumbnail img {
    height: 100%;
    margin-left: -300px;
    transition: all 1s ease-in-out;

}

.thumbnail:hover {
    overflow: visible;
    z-index: 1;
}

.thumbnail img:hover {
    margin-left: -280px;
}