@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'times new roman';
  font-size: 16px;
  font-weight: 600;
  background-image:url("smalllightblueeyepattern.png");
  background-size:cover;
  background-attachment: fixed;
}

nav{
  	position: relative;
	padding-top: 22px;
	padding-right:33px;
	padding-bottom: 0px;
  	width: 100%;
	z-index:11;
}

nav ul li {
	position: relative;
	float: right;
	display: inline-block;
	
}


nav ul li a:hover{
	opacity: 80%;
	
}

.sidenav {
	position: relative;
	z-index:10;
	padding-left: 22px;
}

.sidenav a:hover {
	opacity: 80%;	
}


.showcase{
	padding-top:4px;
	z-index: 222;
}
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
}

.column {
  flex: 25%;
  max-width: 25%;
  padding: 4px;
}

.column img {
  margin-top: 4px;
  vertical-align: middle;
  width: 100%;
}
footer{
	align-content: space-between;
	padding: 0px; 
	bottom: 0px;
	background-color: white;
	position: relative;
	
  	width: 100%;
	z-index:22;
}

footer ul li {
	position: relative;
	float: right;
	display: inline-block;
	width:51%;
	bottom: 0px;	
}


footer ul li a:hover{
	opacity: 66%;
	transform: scale(300%);
	
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (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 screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}