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 {
    font-family: "Tinos", serif;
    font-weight: 400;
    font-style: normal;
	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;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logoposition {
    float: left;
    display: block;
    position: absolute;
    width: 185px;
    height: 75px;
    max-width: 185px;
    margin-bottom: 65px;
    margin-left: 25px;
    margin-top: 25px;
}
 .imagecentered {
    display: block;
    margin: auto;
    width: 95%;
    margin-bottom: 25px;
}
.imagegalleryitem {
   width: 100%;
}
.textcentered {
    text-align: center;
    margin-bottom: 50px;
    margin-right: 2.5%;
    margin-left: 2.5%;
    color: lightgray;
    font-size: larger;
}
.navbar {
    margin-top: 0;
    margin-right: 3%;
    margin-bottom: 65px;
    padding: 3%;
    display: flex;
    justify-content: right;
    color: white;
}
ul.navbaritems {
    display: flex;
    column-gap: 40px;
}
ul.navbaritems li {
    list-style-type: none;
    margin-top: 20px;
}
ul.navbaritems li a {
    font-size: larger;
    text-decoration: none;
    color: lightgrey;
}
.footer {
    display: flex;
    background-color: rgb(58, 58, 58);
    height: 140px;
    justify-content: center;
    color: lightgrey;
    align-items: center;
    width: 100%;
    font-size: large;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    margin-left: 25px;
    margin-right: 25px;
}
.column {
    flex: 24%;
    max-width: 24%;
}
.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}
@media screen and (max-width: 600px) {
  .column {
    flex: 98%;
    max-width: 98%;
  }
}
.pagebody {
    flex: 1;
}

.zoom img:hover {
margin: 0 auto;
position: relative;
display: flex;
transition: .7s;
transform: scale(1.2);
}
