html {
    height: 100vh;
}

body {
    text-align: center;
    height: 100%;
    font-family: "Lato", sans-serif;
}

.main {
    width: 100%;
    margin: 0 auto;
}

section {
    height: 100vh;
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

section img {
    max-width: 100%;
    max-height: 100%;
}


.onepage-pagination {
    top: 0;
}

.floater {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 10px;
    right: 30px;
    z-index: 99;
    border: none;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
}

button {
    background: #3498db;
    background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
    background-image: -o-linear-gradient(top, #3498db, #2980b9);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3498db), to(#2980b9));
    background-image: linear-gradient(to bottom, #3498db, #2980b9);
    border-radius: 28px;
    color: #ffffff;
    padding: 10px;
    text-decoration: none;
    margin: 5px;
}

button:hover {
    background: #3cb0fd;
    background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3cb0fd), to(#3498db));
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
    text-decoration: none;
}


/* GALLERY CONCERNED */

.gallerySection {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.galleryHeader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.galleryHeader h1{
    text-shadow: 8px 0px 21px rgba(0, 0, 0, 0.3);
    font-size: 2em;
}

.gallery {
    padding: 20px;
    padding-left: 0px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}

.container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.container>img {
    margin: 10px;
    border-radius: 1vw;
    flex: 0.4;
    -webkit-box-shadow: 0px 0px 10px 3px rgba(186, 52, 52, 0.3);
    -moz-box-shadow: 0px 0px 10px 3px rgba(186, 52, 52, 0.3);
    box-shadow: 0px 0px 10px 3px rgba(186, 52, 52, 0.3);
}