*, *:before, *:after {
  box-sizing: box-content;
}

body {
  background-color: black;
  z-index: -3;
  position: relative;
  overflow-x: hidden;
}

nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: fixed;
  top: 15px;
  left: 0px;
  width: 100vw;
  z-index: 9999;
}

a, a:hover {
  color: inherit;
  text-decoration: none;
}

.back, .info {
  height: 15px;
  width: 15px;
  background-color: white;
  cursor: pointer;
}

nav > div {
  display: flex;
  align-items: center;
  justify-self: start;
}

.back {
  margin-left: 15px;
  background: #9d793c;
  background: linear-gradient(90deg, #9d793c 0%, #7f885c 37%, #09c2de 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

nav h1, nav p {
  color: white;
  text-transform: lowercase;
  font-size: small;
  font-family: monospace;
  cursor: pointer;
  margin: 0px 0px 0px 0px;
  font-weight: 800;
}

nav h1 {
  margin: 0px 0px 0px 15px;
}

nav > div:nth-child(2) {
  justify-self: center;
}

nav > div:last-child {
  margin-right: 15px;
  justify-self: end;
}

.info {
  border-radius: 100%;
  background: #f2f91d;
  background: linear-gradient(90deg, #f2f91d 0%, #de2a09 100%);
}

.contact {
  position: fixed;
  top: 40px;
  left: 0;
  width: calc(100vw - 30px);
  height: calc(100vh - 55px);
  z-index: 9;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  clip-path: polygon(0% 0%, 0% 100%, 30% 100%, 30% 40%, 70% 40%, 70% 60%, 30% 60%, 30% 100%, 100% 100%, 100% 0%);
  transition: height 1s linear;
  display: none;
}

@media only screen and (max-width: 600px) {
  .contact {
    top: 80px;
    height: calc(100vh - 95px);
  }
}
.contact-p {
  color: white;
  text-transform: lowercase;
  font-size: medium;
  font-family: monospace;
  font-weight: 800;
  position: fixed;
  top: 40px;
  left: 0;
  width: calc(100vw - 30px);
  height: calc(100vh - 55px);
  z-index: 9;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

@media only screen and (max-width: 600px) {
  .contact-p {
    top: 80px;
    height: calc(100vh - 95px);
  }
}
.contact-p > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-p > div > :not(:first-child) {
  margin-top: 0.5em;
}

hr {
  color: white;
}

.work-list {
  position: fixed;
  top: 40px;
  left: 0;
  width: calc(100vw - 30px);
  height: calc(100vh - 55px);
  z-index: 9;
  padding-left: 15px;
  padding-right: 15px;
  color: white;
  text-transform: lowercase;
  font-size: medium;
  font-family: monospace;
  font-weight: 800;
  overflow-y: scroll;
  display: none;
}

@media only screen and (max-width: 600px) {
  .work-list {
    top: 80px;
    height: calc(100vh - 95px);
  }
}
.work-list > * {
  display: none;
}

.work-list p {
  margin: 0;
  cursor: pointer;
}

.welcome-to-infinity {
  color: white;
  font-size: medium;
  font-family: monospace;
  font-weight: 800;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: none;
}

.welcome-to-infinity > :not(:first-child) {
  margin-top: 0.5em;
  font-weight: 400;
}

main {
  position: relative;
  width: 100%;
  height: 90vh;
  margin-top: 45px;
}

@media only screen and (max-width: 600px) {
  main {
    position: relative;
    width: 100%;
    height: 90vh;
    margin-top: 70px;
  }
}
.a-work {
  margin-bottom: 15px;
  border-radius: 100%;
}

.work {
  position: relative;
  cursor: pointer;
  display: flex;
  text-align: center;
  font-size: small;
  font-family: monospace;
  justify-content: center;
  align-items: center;
  color: white;
  overflow-wrap: break-word;
}

.work > span {
  overflow-wrap: break-word;
  max-width: 100%;
  position: relative;
  z-index: 3;
}

.filtre {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  background: #f2f91d;
  background: linear-gradient(90deg, #f2f91d 0%, #de2a09 100%);
  opacity: 0.9;
  mix-blend-mode: darken;
  display: none;
}

video {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  display: none;
}

img {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  z-index: -2;
  display: none;
}

.video-player {
  display: block;
}

.player_controls {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: 50px;
  column-gap: 50px;
  position: fixed;
  bottom: 5em;
  left: 5em;
  width: 90vw;
}

.player_play {
  background-color: white;
  align-self: stretch;
  justify-self: stretch;
  border: solid 2px white;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: relative;
}

.player_time {
  height: 3px;
  background-color: white;
  width: 100%;
  align-self: center;
}

/*# sourceMappingURL=style.css.map */
