/*
 * Globals
 */
 @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700,900|Poppins&display=swap');

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: .05rem solid #fff;
}


/*
 * Base structure
 */

html,
body {
  height: 100%;
  background-color: #000;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}
#__next {
  flex: 1;
  background: rgb(0,0,0);
  background: radial-gradient(circle, rgba(0,0,0,0.8) 0%, rgba(0,0,0,1) 100%);
}
body {
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-image: url('https://images.unsplash.com/photo-1485936791407-c48cafed8213?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80');
  background-size: cover;
}

.cover-container {
  max-width: 80vw;
}

/*
 * Cover
 */
.cover {
  padding: 10vh 0;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2.5em;
  letter-spacing: 0.15em;
}
.lead {
  font-size: 1em;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.10em;
  font-family: 'Montserrat', sans-serif;
}
.separator {
  width: 10vw;
  height: 1px;
  background-color: rgba(255,255,255,0.25);
  margin: 2em 0;
}
h3.pfhead {
  font-size: 1em;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #000;
  text-shadow: none;
  padding-bottom: 1em;
}
#portfolio {
  font-size: 0.8em;
  margin-top: 5em;
  margin-left: -1em;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 2em;
  color: #000;
  text-shadow: none;
  box-shadow: none;
}
#portfolio:hover {
  opacity: 1;
}
#portfolio .images {
  text-align: center;

}
#portfolio img {
  margin: 0.25em 1.25em;
  max-width: 90px;
  max-height: 50px;
  background-color: #fff;
  -moz-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  -o-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}
#portfolio img:hover {
  -moz-filter: none;
  -o-filter: none;
  -webkit-filter: none;
  filter: none;
}
.footnote {
  text-shadow: none;
  margin-top: 2em;
  font-size: 0.7em;
  color: #ccc;
}