html {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Oxygen', sans-serif;
  font-weight: 300;
  padding: 0;
}

body,html {
  background-color: #fff;
  height: 100vh;
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  color: #666;
}

hr {
  max-width: 800px;
  border-top: 1px solid #ccc;
  margin: 64px 0;
}

a {
  text-decoration: none;
}

section {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.icon {
  width: 32px;
  margin-top: 24px;
  opacity: 0.7;
}

.icon:hover {
  opacity: 1;
}

#chevron {
  position: absolute;
  bottom: 64px;
}

#chevron img {
  width: 48px;
  margin-top: 64px;
  cursor: pointer;
}

.title {
  color: #666;
  margin-top: 40px;
  font-size: 3rem;
}

.subtitle {
  color: #ed254e;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.project-title {
  color: #ed254e;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 32px;
}

.profile {
  border-radius: 50%;
}

.tags {
  font-size: 0.7rem;
  margin-bottom: 32px;
}

.tags span {
  color: #fff;
  background-color: #aaa;
  padding: 6px;
  border-radius: 3px;
}

.project-link {
  font-size: 1rem;
}

.project-link a {
  color: #ed254e;
}

.project-link a:hover {
  text-decoration: underline;
}

.project-description {
  font-size: 1rem;
  margin: 16px 0;
  text-align: left;
}

.last {
  margin-bottom: 64px;
}

.image-gallery { 
  font-size: 0;
  flex-flow: row wrap;
  display: flex;
  padding: .5vw;
}

.image-gallery div { 
  flex: auto; 
  width: 250px; 
  margin: .5vw; 
}

.image-gallery div img { 
  width: 100%; 
  height: auto;
  border: 1px solid #ddd;
}

@media screen and (max-width: 400px) {
  .image-gallery div { margin: 0; }
  .image-gallery { padding: 0; }
  
}

/* 
.scroll {
  color: #666;
  font-size: 2rem;
  opacity: 0;
}

.awkward {
  color: #666;
  font-size: 1rem;
  opacity: 0;
}

#arrow .lines path {
  color: #ed254e;
  opacity: 0;
}

#arrow .fill {
  color: #ddd;
  position: absolute;
  opacity: 0;
}

.projects-main {
  position: relative;
  color: #666;
  background-color: #ddd;
  min-height: 600px;
}

.projects-main:before {
  position: absolute;
  content:'';
}

.stil-de-grain-yellow {
  background-color: #f9dc5c;
}

.tea-green {
  background-color: #c2eabd;
}

.dust-storm {
  background-color: #efd0ca;
}

.jet {
  background-color: #363732;
}

.diagonal {
  z-index: 1;
  border: none;
}

.diagonal:before {
  content: '';
  transform: rotate(-6deg);
  transform-origin: 3% 0;
  top: 0;
  left: -25%;
  z-index: -1;
  width: 75%;
  height: 100%;
  background: inherit;
}

.project {
  position: relative;
  background: #fff;
  border: none;
}

.project:before {
  position: absolute;
  content:'';
}

.project.diagonal {
    background: #fff;
}

.separator {
  position: relative;
  color: #666;
  background-color: #ddd;
}

.separator:before {
  position: absolute;
  content:'';
}

.separator-below {
  position: relative;
  background: #fff;
  border: none;
}

.separator-below:before {
  position: absolute;
  content:'';
}

.projects-main-title {
  font-size: 7rem;
  line-height: 6rem;
  margin-bottom: 40px;
}

.projects-main-subtitle {
  font-size: 3rem;
}

.projects-main-small {
  font-size: 0.7rem;
}

.projects-main-top-secret {
  color: #ed254e;
  font-size: 1.5rem;
}

.project-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.project-link {
  font-size: 1rem;
}

.project-link a {
  color: #ed254e;
}

.project-link a:hover {
  text-decoration: underline;
}

.media-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  margin: 0 24px;
  height: 0;
  overflow: hidden;
}

.media-container-border:before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  border-bottom: 60px solid transparent;
  z-index: 1;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.media-container-border:after {
  content: '';
  position: absolute;
  bottom: 29px;
  right: 0;
  border-top: 60px solid transparent;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.media-container-border:before {
  border-left: 755px solid #fff;
}

.media-container-border:after {
  border-right: 755px solid #fff;
}

.media-container-border:hover:before {
  border-left: 0 solid #fff;
}

.media-container-border:hover:after {
  border-right: 0 solid #fff;
}

.media-container-border.stil-de-grain-yellow:before {
  border-left: 755px solid #f9dc5c;
}

.media-container-border.stil-de-grain-yellow:after {
  border-right: 755px solid #f9dc5c;
}

.media-container-border.stil-de-grain-yellow:hover:before {
  border-left: 0 solid #f9dc5c;
}

.media-container-border.stil-de-grain-yellow:hover:after {
  border-right: 0 solid #f9dc5c;
}

.media-container-border.tea-green:before {
  border-left: 755px solid #c2eabd;
}

.media-container-border.tea-green:after {
  border-right: 755px solid #c2eabd;
}

.media-container-border.tea-green:hover:before {
  border-left: 0 solid #c2eabd;
}

.media-container-border.tea-green:hover:after {
  border-right: 0 solid #c2eabd;
}

.media-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.contact {
  color: #fff;
}

 */
