.headings{
	font-family: Tahoma;
	color: blue;
	text-align: center;
}

#linkslist{
	list-style-type: none;
    margin: 0;
    padding: 0;
	overflow: hidden;
	background-color: #AF8700;
}

.links{
	float: left;
}

.links a{
	display: block;
    color: blue;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	font-size: 200%;
	font-weight: bold;
}

.links a:hover:not(.active) {
    background-color: #111;
}

.active {
    background-color: #4CAF50;
}

#logo{
	display: block;
    margin: auto;
}

#ezpic{
	display: block;
    margin: auto;
	float: right;
}

#portfoliocontainer {
	width: 1000px;
	overflow: hidden;
	margin: 50px auto;
	background: white;
}

header {
	width: 800px;
	margin: 40px auto;
}
 
header h1 {
	text-align: center;
	font: 100 60px/1.5 Helvetica, Verdana, sans-serif;
	
}
 
header p {
	font: 100 15px/1.5 Helvetica, Verdana, sans-serif;
	text-align: justify;
}
 
 img { 
    max-width: 300px; 
    max-height: 300px;
}

.portfoliophotos {
	height: 233px;
	width: 3550px;
	margin-bottom: 80px;
}

/*keyframe animations*/
.first {
	-webkit-animation: bannermove 30s linear infinite;
	   -moz-animation: bannermove 30s linear infinite;
	    -ms-animation: bannermove 30s linear infinite;
	     -o-animation: bannermove 30s linear infinite;
	        animation: bannermove 30s linear infinite;
}
 
@keyframes "bannermove" {
 0% {
    margin-left: 0px;
 }
 100% {
    margin-left: -2125px;
 }
 
}
 
@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}
 
@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}
 
@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}
 
@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}

.portfoliophotos {
	height: 233px;
	width: 3550px;
	margin-bottom: 80px;
}
 
.portfoliophotos img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
 
.portfoliophotos img:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	cursor: pointer;
 
	-webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}

.parallax { 
    /* The image used */
    background-image: url("mylogo.jpg");

    /* Set a specific height */
    height: 700px; 
	 background-repeat: no-repeat;
    /* Create the parallax scrolling effect 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
}

.intro {
	float: right;
	font-size: 230%;
	font-weight: bold;
	color: blue;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  background-color: #2196F3;
  padding: 10px;
}
.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  font-size: 30px;
}

#myImgs {
    width: 200%;
  /* Images default to being inline, inline items cannot have a width, so change to block: */
  display: block;
  /* The following may be needed if there's still a wierd looking 2-3px gap at the bottom of the image in some browsers: */
  vertical-align: bottom;
   object-fit: contain;
  
}

