
.fade-in-image { animation: fadeIn 4s; }

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


.header {
  padding: 10px;
  text-align: center;
  font-size: 35px;
}

body {
  margin: 30px;
 
  font-family: Times;
}


img {
    max-width: 100%;
    max-height: 100%;
}


/*Navigation links.*/

 /*unvisited link*/
a:link{
   color: #fff;
}
/*visited link*/
a:visited{
    color: #a59d9d;
}
/*link hover*/
a:hover{
    color: #e00000;
}
/*selected link*/
a:active{
    color: #840000;
}


/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 0px;
 
}

/* Left and right column */
.column.side {
  width: 33.33%;
  padding: 0px;
  
}

/* Middle column */
.column.middle {
  width: 33.33%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
.footer {
 
  padding: 35px;
  text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
  