@font-face {
  font-family: nightmare_codehack;
  src: url(/assets/Nightmare_Codehack.otf);
}


body {
  background-color: black;
  color: white;
  font-family: "Courier New", monospace;
  padding: 2%;
}
h1 {
  font-family: nightmare_codehack, monospace;
  font-size: 60pt;
  color: #04AA6D;
}
p {
  font-size: 14pt;
}
img {
  display: block;
  margin: auto;
}
a {
  color: #04AA6D;
}
code {
  color: #04AA6D;
  font-size: 12pt;
  font-family: "Courier New", monospace;
}

footer p {
  font-size: 10pt;
  text-align: center;
}
a:hover {
  color: white;
}
.navbar {
  width: 100%;
  background-color: #555;
  overflow: auto;
}
/* Navbar links */
.navbar a {
  float: left;
  text-align: center;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 17px;
}
.navbar a:hover {
  background-color: #000;
}
.active {
  background-color: #04AA6D;
}

 /* Breadcrumb menu */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: white;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: white;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #04AA6D;
  text-decoration: underline;
} 

.column-5 {
  float: left;
  width: 19%;
  padding: .5%;
}

.column-3 {
	float: left;
	width: 32%;
	padding: .5%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.tile {
  border-style: solid;
  border-width: 1px;
  border-color: white;
  border-radius: 10px;
  padding: 5%;
  text-align: center;
}

.tile:hover {
  border-width: 3px;
  border-color: #04AA6D;
}
.tile h4 {
  text-align: center;
  font-weight: bold;
}
.card {
  border-radius: 5px;
  background-color: white;
  width: 128px;
  color: black;
  text-align: center;
}
.card img {
  width: 90%;
  padding: 5%;
}
.container {
  padding: 5%;
}
.container p {
  font-size: 10pt;
}

/* Hides elements in a list when filter is in place */
.hide {
  display: none;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: 'Courier New', Courier, monospace;
  color: black;
  background-color: #f1f1f1;
  cursor: pointer;
}

/* Add a light grey background on mouse-over */
.btn:hover {
background-color: #ddd;
}

/* Add a dark background to the active button */
.btn.active {
  background-color: #666;
  color: white;
}

/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
@media screen and (max-width: 500px) {
  img {
    max-width: 100%;
  }
  h1 {
    font-size: 40px;
  }
  .navbar a {
    float: none;
 
   display: block;
  }
  .column {
    width: 100%;
  }
  .tile {
	margin: 5%;
  }
}
