/* Font import */
@font-face {
  font-family: 'GeosansLight';
  src: url(../fonts/GeosansLight/GeosansLight.ttf) format('truetype');
}

/* Body styles */
body {
  font-family: GeosansLight, sans-serif;
  font-size: 12pt;
  font-weight: bold;
  color: #CCC;
  margin: 20px;
}

/* Logo styling */
#logo h1 {
  margin: 20pt 0 0 20pt;
  font-family: GeosansLight, sans-serif;
  font-size: 54px;
  font-weight: 100;
  letter-spacing: -4px;
  color: #CCC;
}

/* Link styles */
a {
  font-family: GeosansLight, sans-serif;
  font-size: 14pt;
  font-weight: 300;
  color: #3C3C3C;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #603;
}
.return-link {
  color: #333;
  text-decoration: underline;
}

/* Page title styling - no underline or pointer cursor ever */
#page-title,
#page-title:hover {
  text-decoration: none !important;
  cursor: default !important;
}

/* Titles */
h2 {
  font-family: GeosansLight, sans-serif;
  font-size: 25pt;
  font-weight: bold;
  color: #3C3C3C;
}

/* Gallery styles */
div.gallery {
  border: 0px solid #ccc;
}

div.gallery:hover {
  border: 0px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
  font-size: 0.8em;
}

/* Box sizing */
* {
  box-sizing: border-box;
}

/* Responsive container */
.responsive {
  padding: 0 6px;
  float: left;
  width: 80%;
}

@media only screen and (max-width: 900px) {
  .responsive {
    width: 100%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 100%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

/* Clearfix */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Technique section */
#Technique {
  margin: 20pt 0 0 20pt;
  font-family: GeosansLight, sans-serif;
  font-size: 14pt;
  font-weight: 400;
  color: #3C3C3C;
}

/* Return button */
#Return_button {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

