.fullscreen {
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0
}

figure {
    width: 300px;
    position: absolute;
    padding: 10px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
    cursor: pointer;
    box-shadow:0 0 5px 5px #eeeeee;
}

figure img {
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 15px
}

figure figcaption {
    font-family: Comic Sans, Comic Sans MS, cursive;
    color: #8f8476;
    display:none;
}

.navbar {
    position: absolute;
    bottom: 0;
    left:0;
    right:0;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: rgba(0,0,0,.4);
    z-index: 999;
    /*display:none;*/
}

button {
    background-color: transparent;
    padding: 10px 24px;
    color: #fff;
    border: 2px solid rgba(0,0,0,.6);
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    transition: .4s
}

button:hover {
    background-color: rgba(0,0,0,.8);
    color: #fff
}