@import url('https://fonts.googleapis.com/css?family=Gentium+Basic:300,400,500,700');
html {
  height: 100%;
}
body {
  color: #0a0608;
  background-color: rgba(242, 236, 225, 0.75);
  margin: 0;
  height: 100%;
  font-family: "Gentium Basic";
}
@media screen and (min-width: 500px) {
  body {
    font-size: 1em;
  }
}
.davm-content {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
}
.space-invader {
  transform: scale(0.5);
}
h1 {
  font-weight: 400;
  font-size: 2em;
}
h1.title {
  font-size: 2.8em;
}
h2,
h3 {
  font-weight: 300;
}
a {
  text-decoration: underline;
  color: #fb8072;
}
.projects-gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.category-wrap {
  text-align: center;
  width: 470px;
  height: 630px;
}
@media screen and (max-width: 500px) {
  .category-wrap {
    width: 317px;
    height: 450px;
  }
}
.category-projects {
  position: relative;
}
.bubble-wrap-outer {
  position: absolute;
  top: 0;
  width: 252px;
  height: 252px;
}
@media screen and (max-width: 500px) {
  .bubble-wrap-outer {
    width: 170px;
    height: 170px;
    font-size: 0.8em;
  }
}
.bubble-wrap-outer:hover {
  z-index: 15;
}
.bubble-wrap-outer:nth-child(1) {
  transform: translate(43%, 0);
}
.bubble-wrap-outer:nth-child(1) .label-bubble {
  justify-content: center;
}
.bubble-wrap-outer:nth-child(2) {
  transform: translate(86%, 25%);
}
.bubble-wrap-outer:nth-child(2) .label-bubble {
  justify-content: flex-end;
}
.bubble-wrap-outer:nth-child(3) {
  transform: translate(86%, 75%);
}
.bubble-wrap-outer:nth-child(3) .label-bubble {
  justify-content: flex-end;
}
.bubble-wrap-outer:nth-child(4) {
  transform: translate(43%, 100%);
}
.bubble-wrap-outer:nth-child(4) .label-bubble {
  justify-content: center;
}
.bubble-wrap-outer:nth-child(5) {
  transform: translate(0, 75%);
}
.bubble-wrap-outer:nth-child(5) .label-bubble {
  justify-content: flex-start;
}
.bubble-wrap-outer:nth-child(6) {
  transform: translate(0, 25%);
}
.bubble-wrap-outer:nth-child(6) .label-bubble {
  justify-content: flex-start;
}
.bubble-wrap-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.bubble {
  position: absolute;
  text-align: center;
  border-radius: 50% 50%;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.img-bubble {
  z-index: 10;
  overflow: hidden;
  border: 2px solid;
}
.img-bubble div {
  width: 100%;
  height: 100%;
  background-size: 100%;
  visibility: hidden;
}
.img-bubble:hover div {
  visibility: visible;
}
.color-bubble {
  opacity: 0.5;
}
.label-bubble {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 0.9em;
}
.label-bubble .label {
  width: 100%;
}
.project-view-wrap {
  display: flex;
  flex-flow: row wrap;
}
.project-view-wrap .project-view-details {
  flex: 1;
  margin: 1.75em 0 0 2em;
}
@media screen and (max-width: 414px) {
  .project-view-wrap .project-view-details {
    margin: 0 0 2em 0;
  }
}
.project-view-wrap .project-view-image {
  width: 252px;
  height: 252px;
  margin: 2em 0 0 0;
}
header {
  text-align: center;
}
header .img-wrapper {
  width: 100%;
  height: 14em;
  margin-bottom: 22px;
  background-image: url('../img/dragon-fold-header-animated.svg');
  background-repeat: repeat-x;
  background-size: 20%;
  background-position: bottom;
  padding-top: 9em;
}
@media screen and (max-width: 1250px) {
  header .img-wrapper {
    background-size: 25%;
  }
}
@media screen and (max-width: 950px) {
  header .img-wrapper {
    background-size: 32%;
  }
}
@media screen and (max-width: 750px) {
  header .img-wrapper {
    background-size: 45%;
  }
}
@media screen and (max-width: 625px) {
  header .img-wrapper {
    height: 13em;
    padding-top: 8em;
  }
}
@media screen and (max-width: 500px) {
  header .img-wrapper {
    margin-bottom: 30px;
    height: 11em;
    padding-top: 6em;
  }
}
header .img-wrapper .logo:hover {
  opacity: 0.9;
}
header .logo-text {
  width: 400px;
}
@media screen and (max-width: 575px) {
  header .logo-text {
    width: 300px;
  }
}
@media screen and (max-width: 375px) {
  header .logo-text {
    width: 250px;
  }
}
header h1 {
  font-weight: 300;
  margin-top: 0.5em;
  margin-bottom: 0;
}
header p {
  margin-top: 0.3em;
  font-weight: 500;
  font-size: 1.2em;
}
.nav {
  z-index: 10;
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #0a0608;
  font-weight: 500;
  text-transform: lowercase;
}
.nav div {
  display: flex;
  align-items: center;
  background-color: white;
  height: 3em;
}
.nav span {
  padding: 0 20px;
}
.nav a {
  color: #0a0608;
  text-decoration: none;
}
.nav a:hover,
.nav a:focus {
  font-style: italic;
}
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.footer .dragon-fold {
  width: 42.5%;
  margin-left: 5%;
  padding: 3em 0;
}
@media screen and (max-width: 980px) {
  .footer .dragon-fold {
    display: none;
  }
}
.footer .about {
  width: 42.5%;
  margin: 5%;
  padding: 1.5em;
}
.footer .about a {
  color: #0a0608;
}
.footer .about h1 {
  margin-top: 0;
  font-size: 1.8em;
  font-weight: 500;
}
.footer .about h2 {
  font-weight: 400;
  font-size: 1.1em;
}
@media screen and (max-width: 980px) {
  .footer .about {
    width: 100%;
    padding: 2em;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 700px) {
  .footer .about h1 {
    font-size: 2.3em;
  }
  .footer .about h2 {
    font-size: 1.4em;
  }
}
h2.gallery-label {
  color: white;
  position: absolute;
  margin: 0.35em 1em;
  font-size: 1.8em;
}
@media screen and (max-width: 499px) {
  h2.gallery-label {
    margin: 0.27em 0.25em;
    font-size: 1.4em;
  }
}
div.gallery-filter {
  position: absolute;
  margin-left: 2.3em;
  margin-top: 345px;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  color: white;
}
@media screen and (max-width: 790px) {
  div.gallery-filter {
    font-size: 0.85em;
  }
}
@media screen and (max-width: 660px) {
  div.gallery-filter {
    font-size: 0.75em;
  }
}
@media screen and (max-width: 499px) {
  div.gallery-filter {
    margin-left: 12px;
    margin-top: 235px;
    font-size: 0.9em;
  }
}
@media screen and (max-width: 400px) {
  div.gallery-filter {
    display: none;
  }
}
div.gallery-filter .filter-button {
  margin-left: 15px;
}
div.gallery-filter p {
  margin: 0;
}
div.gallery-filter .filter-title {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  cursor: pointer;
}
.scrolling-gallery {
  background-color: #0a0608;
  overflow-x: scroll;
  height: 290px;
}
@media screen and (min-width: 500px) {
  .scrolling-gallery {
    height: 400px;
  }
}
@media screen and (max-width: 400px) {
  .scrolling-gallery {
    height: 240px;
  }
}
.scrolling-gallery .title {
  margin: 0 0 0.5em 0;
}
.scrolling-gallery .gallery-row {
  display: inline-flex;
  padding-top: 66px;
}
.scrolling-gallery .gallery-row img {
  max-width: inherit;
}
@media screen and (max-width: 499px) {
  .scrolling-gallery .gallery-row {
    padding-top: 2.5em;
  }
}
.scrolling-gallery .gallery-item {
  position: relative;
  height: 175px;
  margin: 0 0.95em !important;
}
@media screen and (min-width: 500px) {
  .scrolling-gallery .gallery-item {
    height: 250px;
  }
}
.scrolling-gallery img {
  height: 100%;
  width: auto;
  border-radius: .15em;
}
.scrolling-gallery .image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  background-color: rgba(0, 0, 0, 0.75);
  font-weight: normal;
  text-align: center;
  border-radius: 0 0 0.15em 0.15em;
  padding: 0.45em 0 0.4em 0;
}
.scrolling-gallery .pswp__caption__center {
  text-align: center;
  max-width: 500px;
}
.scrolling-gallery .pswp__caption__center a.rainbow {
  text-decoration: none;
  color: crimson;
}
.scrolling-gallery .tech {
  font-size: 0.75em;
}
.talks {
  height: 240px;
}
@media screen and (min-width: 500px) {
  .talks {
    height: 350px;
  }
}
.project-gallery img,
.talks-gallery img {
  height: 100%;
  width: auto;
}
.project-gallery figcaption,
.talks-gallery figcaption {
  display: none;
}
.project-gallery figure,
.talks-gallery figure {
  display: block;
  float: left;
  margin: 0.66%;
}
/*This is coded CSS rainbow*/
.rainbow:hover {
  -webkit-animation: rainbow 1s infinite;
  -ms-animation: rainbow 1s infinite;
  -o-animation: rainbow 1s infinite;
  animation: rainbow 1s infinite;
}
@-webkit-keyframes rainbow {
  0% {
    color: #ff0000;
  }
  10% {
    color: #ff8000;
  }
  20% {
    color: #ffff00;
  }
  30% {
    color: #80ff00;
  }
  40% {
    color: #00ff00;
  }
  50% {
    color: #00ff80;
  }
  60% {
    color: #00ffff;
  }
  70% {
    color: #0080ff;
  }
  80% {
    color: #0000ff;
  }
  90% {
    color: #8000ff;
  }
  100% {
    color: #ff0080;
  }
}
@-ms-keyframes rainbow {
  0% {
    color: #ff0000;
  }
  10% {
    color: #ff8000;
  }
  20% {
    color: #ffff00;
  }
  30% {
    color: #80ff00;
  }
  40% {
    color: #00ff00;
  }
  50% {
    color: #00ff80;
  }
  60% {
    color: #00ffff;
  }
  70% {
    color: #0080ff;
  }
  80% {
    color: #0000ff;
  }
  90% {
    color: #8000ff;
  }
  100% {
    color: #ff0080;
  }
}
@-o-keyframes rainbow {
  0% {
    color: #ff0000;
  }
  10% {
    color: #ff8000;
  }
  20% {
    color: #ffff00;
  }
  30% {
    color: #80ff00;
  }
  40% {
    color: #00ff00;
  }
  50% {
    color: #00ff80;
  }
  60% {
    color: #00ffff;
  }
  70% {
    color: #0080ff;
  }
  80% {
    color: #0000ff;
  }
  90% {
    color: #8000ff;
  }
  100% {
    color: #ff0080;
  }
}
@keyframes rainbow {
  0% {
    color: #ff0000;
  }
  10% {
    color: #ff8000;
  }
  20% {
    color: #ffff00;
  }
  30% {
    color: #80ff00;
  }
  40% {
    color: #00ff00;
  }
  50% {
    color: #00ff80;
  }
  60% {
    color: #00ffff;
  }
  70% {
    color: #0080ff;
  }
  80% {
    color: #0000ff;
  }
  90% {
    color: #8000ff;
  }
  100% {
    color: #ff0080;
  }
}
#style-3::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #c5c5c5;
}
#style-3::-webkit-scrollbar {
  height: 8px;
}
#style-3::-webkit-scrollbar-thumb {
  background-color: #606060;
  border-radius: 10px;
}
iframe.embed {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.profile .outline {
  outline: 1px solid;
}
.profile .cf:before,
.profile .cf:after {
  content: " ";
  display: table;
}
.profile .cf:after {
  clear: both;
}
.profile .cf {
  *zoom: 1;
}
.profile .db {
  display: block;
}
.profile .fl {
  float: left;
  _display: inline;
}
.profile .fw4 {
  font-weight: 400;
}
.profile .lh-copy {
  line-height: 1.5;
}
.profile .link {
  text-decoration: none;
  transition: color 0.15s ease-in;
}
.profile .link:link,
.profile .link:visited {
  transition: color 0.15s ease-in;
}
.profile .link:hover {
  transition: color 0.15s ease-in;
}
.profile .link:active {
  transition: color 0.15s ease-in;
}
.profile .link:focus {
  transition: color 0.15s ease-in;
  outline: 1px dotted currentColor;
}
.profile .w-50 {
  width: 50%;
}
.profile .w-100 {
  width: 100%;
}
.profile .black-10 {
  color: rgba(0, 0, 0, 0.1);
}
.profile .black {
  color: #000;
}
.profile .gray {
  color: #777;
}
.profile .pa2 {
  padding: .5rem;
}
.profile .pa3 {
  padding: 1rem;
}
.profile .ml0 {
  margin-left: 0;
}
.profile .mt2 {
  margin-top: .5rem;
}
.profile .mv0 {
  margin-top: 0;
  margin-bottom: 0;
}
.profile .tc {
  text-align: center;
}
.profile .ttu {
  text-transform: uppercase;
}
.profile .f3 {
  font-size: 1.5rem;
}
.profile .f6 {
  font-size: .875rem;
}
.profile .truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile .clip {
  position: fixed !important;
  _position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}
.profile .dim {
  opacity: 1;
  transition: opacity 0.15s ease-in;
}
.profile .dim:hover,
.profile .dim:focus {
  opacity: .5;
  transition: opacity 0.15s ease-in;
}
.profile .dim:active {
  opacity: .8;
  transition: opacity 0.15s ease-out;
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .profile .w-25-m {
    width: 25%;
  }
}
@media screen and (min-width: 60em) {
  .profile .w-20-l {
    width: 20%;
  }
}
