html {
	display: -webkit-flex;
	display: flex;
	height: 100%;
	overflow: hidden;
}

body {
	font-family: Verdana, sans-serif;
	font-size: 14px;
	color: #555555;
}

.fade {
	opacity: 0;
}

.fade img {
        display: none;
}

canvas {
	left: 50%;
        max-height: 100%;
        max-width: 100%;
        position: absolute;
        top: 50%;
}

.logo {
        background-image: url(/img/logo.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        margin-left: 10px;
        margin-top: 5px;
	float: left;
}

.link {
	text-decoration: none;
	color: #888888;
}

.menu {
        position: absolute;
	top: 65px;
	right: 15px;
	opacity: 0;
	transition: 0.5s;
}

.link:hover .menu {
	opacity: 1;
}

.title {
        background-image: url(/img/title.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        height: 38px;
        left: 50%;
        margin-left: -124px;
        margin-top: -19px;
        position: absolute;
        top: 50%;
        width: 248px;
}

.subtitle {
	position: absolute;
	bottom: 10px;
	text-align: center;
	left: 10px;
	right: 10px;
	margin-left: auto;
	margin-right: auto;font-weight: bold;    color: darkgreen;
}

.buttons {
        display: -webkit-flex;
    	display: flex;
    	-webkit-justify-content: space-between;
    	justify-content: space-between;
    	margin-top: 10px;
	margin-right: 5px;
    	float: right;
}

.icon {
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        height: 56px;
        width: 56px;
	cursor: pointer;
}

.photo {
	box-shadow: 3px 3px 3px #999;
	background: transparent;
	padding: 8px;
	border: 1px solid #999999;
	float: left;
    	paddint: 20px;
    	margin-right: 25px;
    	margin-bottom: 10px;
}

.main {
	margin: 20px;
}

.name {
	font-size: 35px;
	color: rgb(140, 155, 7);
	padding-bottom: 10px;
	margin-right: 50px;
	margin: 22px 50px 20px 20px;
	font-variant: small-caps;
}

.pagetext {
	text-align: justify;
	font-size: 20px;
}

.bg {
	background-image: url(/img/splash_bg.png);
        background-repeat: no-repeat;
}.bg_contact {	background-image: url(/img/contact_bg.jpg);        background-repeat: no-repeat;	background-size: 80%;    	background-position-y: bottom;    	background-position-x: right;}

.top {
	position: absolute;
	top: 0;
	height: 70px;
    right: 100px;
}

.contact {
	text-decoration: none;
	color: #000000;
	font-size: 16px;
	width: 250px;
}

.contact > img {
	vertical-align: middle;
	margin-right: 15px;
}

blockquote {
	margin: 0px;
	font-size: 2rem;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(
		35deg,
		hsl(310, 100%, 65%),
		hsl(160, 100%, 65%)
	);
}

.image-slideshow {
  	max-width: 1000px;
    position: relative;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: 50px;
}

.image > img {
		width: 70%;
		height: 70%;
	}


.fadeimg {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fadeimg {
  from {opacity: .4}
  to {opacity: 1}
}

#showMenu {
	position: fixed;
    z-index: 1000;
    margin: 1em;
    padding: 0;
    width: 2.5em;
    height: 2.25em;
    border: none;
    text-indent: 2.5em;
    font-size: 1.5em;
    color: transparent;
    background: transparent;
}

#showMenu::before {
	position: absolute;
    top: 0.5em;
    right: 0.5em;
    bottom: 0.5em;
    left: 0.5em;
    background: linear-gradient(#77aec3 20%, transparent 20%, transparent 40%, #77aec3 40%, #77aec3 60%, transparent 60%, transparent 80%, #77aec3 80%);
    content: '';
}

.row {
	display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    justify-content: center;
    margin-bottom: 10px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
	flex: 24%;
	max-width: 24%;
	padding: 0 4px;
  }
  
  .column img {
	margin-top: 8px;
	vertical-align: middle;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media (max-width: 800px) {
	.column {
	  flex: 50%;
	  max-width: 50%;
	}
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media (max-width: 600px) {
	.column {
	  flex: 100%;
	  max-width: 100%;
	}
  }

  .inner {
	overflow-y: auto;
	height: 100%;
  }

  #fullpage {
	display: none;
	position: absolute;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-size: contain;
	background-repeat: no-repeat no-repeat;
	background-position: center center;
	background-color: black;
  }

  .column img {
	cursor: pointer;
  }

  .link img {
	position: absolute;
    z-index: -1;
    top: -20px;
    left: -45px;
	opacity: 0.5;
  }

  
  .link:hover img {
	opacity: 1;
  }

  .footer {
	display: flex;
    flex-direction: column;
    align-items: center;
	margin-top: 80px;
  }