* {box-sizing: border-box}
@font-face { font-family: LapsusPro-Bold; src: url('LapsusPro-Bold.otf'); } 

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000000;
	max-width: 920px;
	margin: auto;
	background: #E7EEF0;
	background-image: url('pics/bg-pattern.png');
	box-shadow: 0px 0px 18px #9BBFC9;
}

header {
	text-align: center;
}

.piclogo {
	width: 100%;
	height: auto;
}

nav {
  overflow: auto;
  width: 100%;
  background-color: #153e5c;
}

nav a {
	float: left;
	padding: 6px;
	font-family:LapsusPro-Bold, Arial, Helvetica, sans-serif;
	-webkit-text-stroke: 1px black;
	text-decoration: none;
	font-size: 30px;
	width: 20%;
	text-align: center;
}


nav a:hover {
	color: #94D5FF;
	background: #416F91;
}

@media screen and (max-width: 500px) {
nav a {
    float: none;
    display: block;
    width: 100%;
  }
 body {
	 width: 100%;
 }
 }
  
main {
	text-align: center;
	line-height: 160%;
	background: #E7EEF0;
	padding: 20px;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.main {
	flex: 70%;
	padding: 20px;
}
  
.side {
	flex: 30%;
	padding: 20px;
}

a:link {
	color: #64b8ed;
	text-decoration: none;
}

a:visited {
	color: #64b8ed;
	text-decoration: none;
}

a:hover {
	color: #94D5FF;
	text-decoration: none;
}


table, th, td {
	padding: 10px;
	text-align: left;
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}

th {
	width: 50%;
}

.special {
	font-family:LapsusPro-Bold, Arial, Helvetica, sans-serif;
	size: 25px;
	color: #64B8ED;
}

h1 {
	font-family:LapsusPro-Bold, Arial, Helvetica, sans-serif;
	font-size: 50px;
}

h2 {
	font-family:LapsusPro-Bold, Arial, Helvetica, sans-serif;
	font-size: 35px;
	color: #153E5C;
	-webkit-text-stroke: 0px black;
}

h3 {
	font-family:LapsusPro-Bold, Arial, Helvetica, sans-serif;
	font-size: 30px;
	color: #153E5C;
	-webkit-text-stroke: 0px black;
}

hr {
	border-top: 2px solid black;
	border-left: none;
}


#myImg {
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  max-width: 100%;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}