body {
  background-color: #2C911F;
  color: #071C05;
  font-family: Tahoma;
}
header {
  background-color: #237219;
  text-align: center;
  padding: 8px;
}
div {
  padding: 10px;
  overflow: auto;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 180px;
}

div.gallery-item:hover {
  border: 1px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item .desc {
  padding: 15px;
  text-align: center;
}
img {
  float: right;
  display: block;
  height: 100%;
  padding: 60px;
}
  
/* unvisited link */
a:link {
  color: #125969;
}

/* visited link */
a:visited {
  color: #0D5E0E;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: #122669;
}
.email > span:nth-child(2) {
	display: none;
}
 /* Dashed border */
.dashed {
  border-top: 3px dashed #bbb;
}

/* Dotted border */
.dotted {
  border-top: 2px dotted #237219;
}

/* Solid border */
.solid {
  border-top: 3px solid #bbb;
}

/* Rounded border */
.rounded {
  border-top: 8px solid #bbb;
  border-radius: 5px;
} 
footer {
  background-color: #237219;
  text-align: center;
  padding: 8px;
}