
.fullscreen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

figure {
    width: 200px;
    position: absolute;
    padding: 10px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
    cursor: pointer;
}

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;
}

.navbar {
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 5px;
	text-align: center;
	z-index: 999;
	height: 40px;
}

button {
	background-color: transparent;
	padding: 10px 24px;
	color: #000;
	border: 2px solid black;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	transition: 0.4s;
}

button:hover {
    background-color: #f44336;
    color: white;
}