/* File Name: image.css  */
/* Author   : Paul Della'Zanna */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

body {
	color: #7585EB;
	background-color: #000000;
	font-size: 30px;
	font-family: Arial;
	text-align: center;
    font-family: 'Arial', sans-serif;
    line-height: 1.0;
}

/* Main content styles */
main {
    padding: 20px;
}

/* Gallery styles */
.gallery {
    text-align: center;
}

.larger-image img {
    width: auto;
    max-height: 70vh; 
    margin-bottom: 20px;
}

.thumbnails {
    margin-top: 20px;
}

.imagetext {
	font-size: 20px;
	font-family: Arial;
	text-align: center;
    font-family: 'Arial', sans-serif;
    line-height: 1.0;
}

.thumbnails img {
    width: 5vh; 
    height: auto;
	cursor: pointer;
    margin: 0 5px;
}


