/* ---- CSS RESET ---- */


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ---- STYLES ---- */

body {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(179, 179, 179);
    background: linear-gradient(90deg, rgba(179, 179, 179, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(179, 179, 179, 1) 100%);
}

.photobox {
    position: relative;
}

#photo {
    max-width: 60vw;
}

.grey-container {
    line-height: 1;
    max-height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0px;
    background-color: rgba(43, 43, 43, 0.6);
}

h1,
p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: .4rem;
    text-shadow: black 0px 0px 2px;
}

h1 {
    color: white;
    font-size: 1.2rem;
}

p {
    color: #b3b3b3;
    font-size: .8rem;
}

.icon {
    padding: 16px;
}

.left-arrow,
.right-arrow {
    display: flex;
    align-items: center;
    align-self: stretch;
    cursor: pointer;
    transition: 0.18s;
}

.left-arrow:hover,
.right-arrow:hover {
    filter: opacity(30%);
}

.rotate {
    transform: rotate(180deg);
}

.mainbox {
    display: flex;
    align-items: center;
    line-height: 0;
    box-shadow: 0px 10px 20px #888888;
    background: rgb(215, 215, 215);
    background: linear-gradient(0deg, rgba(215, 215, 215, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

#thumbnails {
    display: flex;
    align-items: center;
}

.thumbnail-box {
    height: 58px;
    width: 58px;
    margin: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(215, 215, 215);
    background: linear-gradient(0deg, rgba(215, 215, 215, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 3px;
    box-shadow: 0px 10px 20px #888888;
}

.thumbnail {
    height: 50px;
    width: 50px;
}

.thumbnail-box-big {
    height: 80px;
    width: 80px;
}