@charset "UTF-8";


@font-face {font-family:'Fleya'; src:url('https://lotta-stoever.net/assets/fonts/Fleya-Light.woff'); font-weight:200;}
@font-face {font-family:'Fleya'; src:url('https://lotta-stoever.net/assets/fonts/Fleya-Light-Italic.woff'); font-style: italic; font-weight:200;}

@font-face {font-family:'Moderat'; src:url('https://lotta-stoever.net/assets/fonts/Moderat-Regular.woff'); font-weight:400;}

html, body {
  margin:0;
  padding:0;
  font-family: "Moderat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

body {
  transition: all ease .5s;
}

body.mode-light {
  background-color: #F6F6F6;
  color: #000;
}
body.mode-dark {
  background-color: #111;
  color: #fff;
}

::selection {
  color: #3fd046;
  background: #ffe4ed;
}

* {
  box-sizing: border-box;
  text-size-adjust: none;
  -webkit-text-size-adjust:none;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

h1, .h1, h2, .h2 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 40px;
}

h3, .h3 {
}

p {
}

blockquote {
  margin: 60px 0;
  border-left: 5px solid #dcdcdc;
  padding: 0 50px;
}

section, footer {
  width: 100%;
}
.container {
  padding: 0 20px;
}

.fadein-when-loaded {
  opacity: 0;
  transition: opacity .4s ease;
}

#sticky-title {
  color: #0ff;
  mix-blend-mode: difference;
  font-size: 21px;
  position: fixed;
  transition: transform 0.05s, opacity ease .2s;
  pointer-events: none;
  z-index: 12;
  opacity: 0;
}


header {
  padding: 50px;
}

#logo {
  display: inline-block;
  position: fixed;
  top: 50px;
  color: #fff;
  mix-blend-mode: difference;
  z-index: 10;
}

#logo h1, #logo .h1{
  font-weight: normal;
  margin:0;
  display: inline;
  font-size: 30px;
}

#logo pre {
  display: inline;
  font-family: inherit;
  font-size: inherit;
}

#cursor {
  display: inline-block;
  position: relative;
  width: 2px;
  height: 22px;
  opacity: 1;
  transition: background-color ease .6s, opacity ease .1s;

  animation-duration: 2s;
  animation-name: blink;
  animation-iteration-count: infinite;
  animation-direction: alternate;  
}

.mode-light #cursor {
  background-color: #fff;
}
.mode-dark #cursor {
  background-color: #fff;
}

#cursor::before, #cursor::after {
  content:"";
  height: 2px;
  width: 6px;
  background-color: inherit;
  transition: background-color ease .6s;
  position: absolute;
  left:50%;
  margin-left: -3px;
}
#cursor::before {
  top:0;
}
#cursor::after {
  bottom:0;
}

@keyframes blink {
  0%, 100%, 30%, 70% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}



nav, menu, menu ul, menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav {
  font-size: 30px;
  width: calc(100vh - 220px);
  
  transform: translate(-50%,40px) rotate(-90deg);
  -webkit-transform: translate(-50%,40px) rotate(-90deg);
  position: fixed;
  left: 65px;
  top: 50%;
}
menu {
  display: block;
  width:100%;
}
menu ul {
  width:100%;
  text-align: right;
}
menu ul li {
  display: inline-block;
  margin-left: 30px;
}
menu ul li.active a {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.15em;
}





#contrast-btn {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 30px;
  height: 30px;
  cursor:pointer;
  background-image: url("../img/contrast.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: difference;
}



#overview {
  padding: 77px 50px 50px 130px;
  overflow-x: hidden;
}

#overview-inner-c {
  display: flex;
  flex-direction: column-reverse;
}

.blogpost {
  width: 400px;
  position: relative;
}
.blogpost:hover {
  z-index: 5;
}
.blogpost img {
  display: block;
  box-shadow: 0 0 25px transparent;
  transition: all ease .3s;
}
.blogpost.inview img, .blogpost:hover img {
  box-shadow: 0 0 25px #09B02B;
}
.blogpost h2 {
  display: none;
  font-weight: 200;
  font-size: 21px;
  margin:0;
}

.standard #overview {
  font-size: 30px;
  padding-left: 33vw;
}
.standard #overview p:first-of-type, .standard #overview h1:first-of-type {
  margin-top:-10px;
}

.standard #overview h1:first-of-type {
  text-decoration: underline;
  text-decoration-thickness: auto;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.15em;
}

.standard #overview a {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.15em;
}

.standard #overview ul li a {
  word-break: break-all;
}

.standard #overview img, .standard #overview video {
  width:80%;
  height: auto;
}




footer {
  padding: 200px 50px 50px;
  text-align: right;
}


@media screen and (max-height: 500px) {
}

@media screen and (max-width: 700px) {
  body {
    line-height: 1.5;  
  }
  header {
    padding: 20px;
  }
  #overview, footer {
    padding-left: 20px;
    padding-right: 20px;
  }


  #logo, #contrast-btn {
    top: 15px;
  }
  #contrast-btn {
    right: 20px;
  }

  nav {
    left: 27px;
    transform: translate(-50%,-10px) rotate(-90deg);
    -webkit-transform: translate(-50%,-10px) rotate(-90deg);
  }

  h1, .h1, h2, .h2,
  #logo h1, #logo .h1,
  nav,
  .standard #overview {
    font-size: 22px;
  }

  .standard #overview,
  .overview #overview {
    padding-left: 58px;
  }
  
  blockquote {
    margin: 60px 0;
    border-left: 3px solid #dcdcdc;
    padding: 0 20px;
  }
  .standard #overview img, .standard #overview video {
    width:100%;
  }
  

  .blogpost {
    width: calc(100vw - 78px);
    margin-bottom: 40px;
    transform: none !important;
    -webkit-transform: none !important;
  }
  .blogpost h2 {
    display: block;
    margin-top: 10px;
    line-height: 1.4;
  }

  footer {
    padding-top: 100px;
  }

  #sticky-title {
    display: none;
  }
  
}


@media screen and (min-width: 700px) {
}


@media screen and (min-width: 800px) {
}


@media screen and (min-width: 1000px) {
}

@media screen and (min-width: 1200px) {
}

@media screen and (min-width: 1500px) {
}

@media screen and (min-width: 1920px) {
}
