* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
	width: 100%
	max-height: 99vh;
	padding: 0px;
	margin: 0px;
}

.text-block {
    position: absolute;
    width: 95%;
    bottom: 1px;
    background-color: white;
    color: black;
	min-height:1em;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 2%;
    text-align: center;
    opacity: 1;
}

.text-block:hover {
    position: absolute;
    width: 95%;
    bottom: 1px;
    background-color: white;
    color: black;
	min-height:1em;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 2%;
    text-align: center;
    opacity: 0.1;

}

/* Container for flexboxes */
section {
    display: -webkit-flex;
    display: flex;
	-webkit-flex-direction: row;
	width: 100%
	height:100%;
	margin: 0 ;
	padding: 0px;
}

/* Style the navigation menu */
nav {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: #fff;
    padding: 0px;
    flex: 0 0 3em;
    margin: 0 0px;

}

.vc {
  position: relative;
  top: 45%;
  height: 100px;
  margin-top: -50px; /* account for padding and border if not using box-sizing: border-box; */
}

/* Style the content */
article {
    -webkit-flex: 8;
    -ms-flex: 8;
    flex: 8;
    padding: 0px;
    margin: 0 0px;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
/*  @media (max-width: 600px) {
    section {
      -webkit-flex-direction: column;
      flex-direction: column;
	  text-align:center;
    }
} 
*/

.left {
	width:30px;
	height:30px;
	opacity: .7;
}
.left:hover {
	width:30px;
	height:30px;
	opacity: 1;
}


.center-fit {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) ;
	padding-bottom: 3em;
   max-width: 100%;
   max-height: 99vh;
  }

