@charset "UTF-8";

/* Global Styles */
* {
  box-sizing: border-box;
}

/* Body Structure */
 body {
  background-color: rgba(244,244,244,0.7);
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Header */
header {
  background-color: black;
  color: white;
  padding: 50px;
}

/* Page Structure */
section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.responsive {
  margin: 10px;
  padding: 5px;
}

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;
}

/* Footer */
footer {
  background-color: black;
  color: white;
  width: 100%;
  margin-left: px;
  padding: 10px;
  text-align: center;
}

/* Media Queries */
@media screen and (min-width: 600px) {
  section {
      flex-direction: row;
  }
  .responsive {
      flex: 45%;
  }
}
@media screen and (min-width: 1024px) {
  .responsive {
      flex: 20%;
  }
}
  
