
body{
  background-image: url(/images/background.jpg);
  background-size: cover;
  background-attachment: fixed;
  /*background-color: #E6E6E6;*/
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Arial" ;


}
margin: 0;
  font-family: Lato, sans-serif;
}

.zoom {
  padding: 50px;
  background-color: green;
  transition: transform .5s ease; /* Animation */
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}



.topnav {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;

}

.topnav a {
  float: left;
  display: block;
  color: #white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  z-index: 99
}

.topnav a:hover {
  background-color: #BDBDBD;
  color: black;
}


.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }


.content {
  padding: 16px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

.sticky + .content {
  padding-top: 60px;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 33.33%; /* IE10 */
  flex: 33.33%;
  max-width: 33.33%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}


#about, #projects, #contact, #instructions{
  color: white;
}

.about-row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}
.aboutcolumn{
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
  max-width: 50%;
  padding: 0 4px;
}
.aboutcolumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


.services li{
   margin: 10px 0;
}

.aboutul li{
  margin: 10px 0;
  font-size: 20px;
}
