* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: "Verdana";
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

body {
  padding-top: 80px;
  background-color: #111;
  /*overflow: hidden;*/
}

/**** BEGIN Navigation ****/
nav {
  top: 0;
  left: 0;
  position: fixed;
  height: 80px;
  width: 100%;
  background-color: #111;
  z-index: 99;
  text-align: center;
  font-size: 2vmax;
  text-shadow: 1px 1px 6px #595445;
  font-family: "Dosis";
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: width .5s, height .5s, background-color .5s, -webkit-transform .5s;
  transition: width .5s, height .5s, background-color .5s, transform .5s;
}

nav:hover {
  height: 150px;
}

nav:hover a {
  /*font-size: larger;*/
}

nav a {
  text-decoration: none;
  color: #fff;
  margin-left: 15px;
  margin-right: 15px;
  line-height: 80px;
  -webkit-transition: -webkit-font-size .5s, -webkit-transform .5s;
  transition: font-size .5s, transform .5s;
}
nav a:hover {
  color: #fff;
}
#logo {
  height: 100px;
  -webkit-transition: width .5s, height .5s, background-color .5s, -webkit-transform .5s, left .5s, top .5s;
  transition: width .5s, height .5s, background-color .5s, transform .5s, left .5s, top .5s;
}
#logo-link {
  position: fixed;
  top: 100px;
  left: 20px;
  z-index: 999;
  -webkit-transition: width .5s, height .5s, background-color .5s, -webkit-transform .5s, left .5s, top .5s;
  transition: width .5s, height .5s, background-color .5s, transform .5s, left .5s, top .5s;
}
#logo.small {
  height: 90px;
}
#logo-link.small {
  top: 5px;
  left: 20px;
  z-index: 999;
}
/**** END Navigation ****/

/**** BEGIN Home ****/
#home {
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("../img/drawing-bg.jpg");
  background-size: cover;
  color: #fff;
}
#home .home-panel {
  position: relative;
  text-align: center;
  width: 100%;
  height: 50%;
  -webkit-transition: width .5s, height .5s, background-color .5s, -webkit-transform .5s;
  transition: width .5s, height .5s, background-color .5s, transform .5s;
}
#home .home-panel h1 {
  text-align: center;
  font-family: "Montserrat";
  font-size: 8vmax;
  text-transform: uppercase;
  text-shadow: 3px 3px 9px #000;
  z-index: 999;
  width: 100%;
  -webkit-transition: width .5s, height .5s, background-color .5s, -webkit-transform .5s;
  transition: width .5s, height .5s, background-color .5s, transform .5s;
}
#home .title {
  width: 100%;
  -webkit-transition: width .5s, height .5s, background-color .5s, -webkit-transform .5s;
  transition: width .5s, height .5s, background-color .5s, transform .5s;
}
#home .info {
  /*border: 1px solid blue;
  height: 100%;*/
  padding: 20px;
}
#home .info p {
  /*border: 1px solid red;
  height: 100%;*/
  color: white;
  text-shadow: 3px 3px 3px #000;
  font-family: "Actor";
  /*font-family: "Roboto Mono";*/
  /*text-transform: uppercase;*/
  font-size: 3.5vmax;
}
#home .flex-container {
  -webkit-flex-flow: column;
  flex-flow: column;
}

/*
 * home-digital
 */
#home-digital {
  background-color: rgba(0, 255, 255, 0.3);
}
#home-digital.flex-container {
  justify-content: flex-end;
}
#home-digital .title.flex-item {
  order: 2;
}
#home-digital .info {
  background-color: rgba(255, 255, 0, .5);
  width: 100%;
  max-width: 1024px;
}
#home-digital .info.flex-item {
  order: 1;
  align-self: center;
  flex: 1;
}
#home-digital .hide-info {
  visibility: hidden;
  display: none;
}
#home-digital .show-info {
  visibility: visible;
  display: block;
}

/*
 * home-content
 */
#home-content {
  background-color: rgba(255, 255, 0, 0.3);
}
#home-content.flex-container {
  justify-content: flex-start;
}
#home-content .title.flex-item {
  order: 1;
}
#home-content .info {
  background-color: rgba(0, 255, 255, .5);
  width: 100%;
  max-width: 1024px;
}
#home-content .info.flex-item {
  order: 2;
  align-self: center;
  flex: 1;
}
#home-content .hide-info {
  visibility: hidden;
  display: none;
}
#home-content .show-info {
  visibility: visible;
  display: block;
}

/*
 * Home Panels
 */
#home .shrink-panel {
  height: 20%;
}
#home .shrink-panel .title {
  opacity: 0.3;
  color: transparent;
}
#home .shrink-panel h1 {
  text-shadow: 0px 0px 0px #fff;
}
#home .grow-panel {
  height: 80%;
  background-color: transparent;
}
#home .grow-panel .title {
  background-color: rgba(90, 90, 90, .4);
}
#home .row {
  height: 100%;
  padding: 0;
  margin: 0;
}
/**** END Home ****/

/**** BEGIN Projects ****/
#projects {
  background-color: #265A88;
}
/**** END Projects ****/


/**** BEGIN General ****/
.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.full-page {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}
.underline {
  text-decoration: underline;
}
#jsmonitor {
  visibility: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  height: 50px;
  background-color: white;
  z-index: 9999;
}
/**** END General ****/
