/* Imports */
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro);
@import url(https://fonts.googleapis.com/css?family=Lobster);

/* Base */
html, body { height: 100%; overflow: hidden; background: #000; }
a { color: #468; transition: color 0.3s; }
a:hover, a:active, a:focus { color: #38e; text-decoration: none; text-shadow: 0 0 5px #468; }

/* Sky */
#view { height: 100%; }
#sky { position: absolute; left: 0; top: 0; }

/* Header */
.logo {
  color: #fff;
  font-size: 4em;
  font-family: 'Lobster', Calibri, Verdana;
  letter-spacing: 0;
  text-shadow: 0 0 20px #eee;
  background: url(/images/avatar.gif) no-repeat 0 0;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  background-size: contain;
  padding-left: 64px;
  border: 2px solid #bebebe;
  margin-top: 16px;
  z-index: 1;
}

.logo h1 {
  margin-top: -8px;
  margin-left: 3px;
  text-indent: -10px;
}

.sub-logo {
  display: inline-block;
  position: relative;
  left: 0;
  top: 6px;
  z-index: 2;
}

.sub-logo-1,
.sub-logo-2 {
  opacity: 0;
  font-size: 2em;
  font-family: 'Source Sans Pro', Calibri, Verdana;
  letter-spacing: -1px;
  text-shadow: 0 0 8px #000;
  color: #abd;
}

.sub-logo-2 {
  font-size: 1.5em;
}

.resume-link {
  color: #38e;
}

.resume-link:hover,
.resume-link:active,
.resume-link:focus {
  color: #38f;
  text-shadow: 0 0 5px #38e;
}

/* Skills */
#skills {
  visibility: hidden;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  z-index: 3;
}

#skill-info {
  visibility: hidden;
  font: normal 24px/1 'Source Sans Pro', Calibri, Verdana;
  color: #fff;
  margin-top: 10px;
}

.skill {
  width: 32px;
  height: 32px;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.skill:hover {
  opacity: 1;
}

/* Projects */
#projects-container {
  opacity: 0;
  margin-top: 0px;
}

#project-info {
  visibility: hidden;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

#project-name {
  font-size: 5em;
  font-weight: bold;
  font-family: 'Source Sans Pro';
  color: #fff;
  text-align: center;
  text-shadow: 0 0 7px #fff;
}

#project-url {
  font-size: 2.5em;
  font-family: 'Source Sans Pro';
  text-align: center;
  letter-spacing: -2px;
  text-shadow: 0 0 7px #13151e;
}

#project-skills {
  text-align: center;
}

.projects-summary {
  font-size: 3em;
  color: #fff;
  text-align: center;
  font-family: 'Source Sans Pro';
  font-weight: bold;
  text-shadow: 0 0 10px #eee;
  margin-bottom: 10px;
}

.projects .cover {
  cursor: pointer;
}

.projects .cover .reflected {
  padding-bottom: 5px;
  box-shadow: 0 0 10px 10px #000;
}

.projects .cover.no-shadow .reflected {
  box-shadow: none;
}

.projects .cover.current {
  opacity: 1;
}

.swipe-up-message {
  font-size: 7em;
  position: fixed;
  margin-top: 135px;
  text-align: center;
  left: 0;
  right: 0;
  color: #fff;
  font-family: 'Source Sans Pro';
  font-weight: bold;
}

.swipe-up-message .arrow {
  font-size: 1.5em;
}

/* Mobile */
@media only screen and (max-width: 991px) {
  .projects {
    transform: rotate(90deg) translate(10%, -30%);
  }

  .projects .cover {
    transform: rotate(-90deg) !important;
  }

  .projects .cover.previous-cover {
  }

  .projects .cover.current-cover {
    transition: transform 300ms ease;
    transform: rotate(-90deg) scale(1.3) !important;
    margin-left: 115px !important;
  }

  .projects .cover.current-cover canvas {
    display: none !important;
  }

  .projects .cover.next-cover {
    margin-left: 165px !important;
  }
}