/* unvisited link */
a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
  text-align: center; 
}

/* visited link */
a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
  text-align: center; 
}

/* mouse over link */
a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
  text-align: center; 
}

/* selected link */
a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
  text-align: center; 
} 


.text{ font-size:18px;
} 

div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}


/* Style the footer */
footer {
  background-color: black;
  padding: 15px;
  text-align: center;
  color: white;
}
