@charset "UTF-8";

:root {
  font-size: 2vw;
  
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background-color: #000;
  font-family: "urw-din", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  cursor: pointer;
  color: inherit;
}

a:hover {
  opacity: .6;
}

nav {
  position: absolute;
  color: #CFCDA9;
  top: 2rem;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  font-size: 1.3rem;
}

nav a {
  margin-right: 2rem;
}

.fullscreen {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.fullscreen img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.title {
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 50vw;
  background: none;
  background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  justify-content: center;
}

.title img {
  width: 50vw;
}

.wat {
  position: absolute;
  top: 17vh;
  right: 3vw;
  width: 22vw;
  min-width: 250px;
}

.wat img {
  width: 100%;
}

.stoerer {
  position: absolute;
  left: -2vw;
  top: 8vh;
  width: 28vw;
  min-width: 250px;
  z-index: 100;
  transform: rotate(-10deg);
}

.stoerer img {
  width: 100%;
}


.slideshow--2-for-5 {
  position: relative;
  z-index: 1;
}

.slideshow--2-for-5 img {
  color: transparent;
  opacity: 0;
  z-index: 0;
  animation: slideshow__fade--2-for-5 12s linear infinite 0s;
  backface-visibility: hidden;
}

.slideshow--2-for-5 img:not(:first-child) {
  position: absolute;
  top: 0px;
  left: 0px;
}

.slideshow--2-for-5 img:nth-child(1) {
  animation-delay: 0s;
}

.slideshow--2-for-5 img:nth-child(2) {
  animation-delay: 5s;
}


.cannes {
  position: absolute;
width: 18vw;
top: 23vh;
left: 6vw;
}

.container {
  position: absolute;
  width: 96vw;
  min-height: 96vh;
  left: 2vw;
  top: 2vw;
  background-color: rgba(0,0,0,.9);
  z-index: 2000;
  display: none;
}

.close {
  position: absolute;
  right: 2vw;
  top: 2vw;
  width: 4vw;
  height: 4vw;
  opacity: 1;
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 4vw;
  width: 2px;
  background-color: #fff;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}

.content {
  color: #fff;
  width: 80%;
  margin: 0 auto;
  margin-top: 6vw;
  padding-bottom: 4rem;
}


.info {
    width:13rem;
    height:2.5rem;
    background: #CFCDA9;
    margin-left:4rem;
    position:absolute;
    bottom: 4vh;
    right: 10vw;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 1rem;
    font-size: 1.2rem;
    border-radius: .5rem;
}

.container section {
  margin-bottom: 4rem;
}

.container section.stills {
  display: flex;
justify-content: flex-start;
flex-wrap: wrap;
column-gap: 1rem;
row-gap: 1rem;
}

.container section img {
  width: 30%;
}


a:hover .info {
  opacity: .8;
}

footer {
  position: absolute;
bottom: .5rem;
color: #555;
font-size: .6rem;
left: .5rem;
}


@keyframes slideshow__fade--2-for-5 {  
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  30.00% {
   opacity: 1;
   animation-timing-function: ease-out;
  }
  50.00% {
    opacity: 1;
  }
  70.00% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}




@media screen and (min-width:1400px){
  :root {
    font-size: 1.5vw;
  }

}

@media screen and (max-width:700px){
  :root {
    font-size: 2.5vw;
  }
  
  .stoerer {
    min-width: 200px;
  }
  
  .cannes {
    width: 26vw;
    top: 34vh;
  }
  
  .wat {
    min-width: 200px;
    top: 12vh;
  }
  
  .title {
    height: 60vw;
  }
  
  .title img {
  width: 70vw;
}
  
  .content {
    font-size: 1.5rem;
  }
  
  .close {
    width: 8vw;
height: 8vw;
  }
  .close:before, .close:after {
    height: 8vw;
  }
  
  footer {
    font-size: 1rem;
  }

}

