 
 :root {
  --black: #000000;
  --yellow: #FFD64E;
  --darkyellow: #DDAF14;
}

* {
  box-sizing: border-box;
}

body, html {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--black);
  color: var(--yellow);
  font-family: 'Kanit', sans-serif;
  font-weight: 100;
  font-size: 10px;
}

h1, h2 {
  font-size: 3.2rem;
  font-weight: 100;
  line-height: 1.6;
  text-decoration: none;
  color: var(--yellow);
  text-align: left;
}

h3 {
  font-size: 2.6rem;
  font-weight: 100;
  line-height: 1.6;
  text-decoration: none;
  color: var(--yellow);
  text-align: left;
}

p {
  font-size: 1.8rem;
  line-height: 1.6;
  text-decoration: none;
  color: var(--yellow);
  text-align: left;
}

.logo a {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--yellow);
  letter-spacing: 1px;
}

@media (hover:hover) {
  .logo  a:hover {
    color: var(--yellow);
  }
}

a {
  font-size: 3rem;
  text-decoration: none;
  color: var(--yellow);
  transition: .2s;
}

@media (hover:hover) {
  a:hover {
    color: var(--darkyellow);
  }
}

.emphasis {
  font-style: italic;
}

/* –– navigation --*/

.navigation {
  height: 7rem;
  width: 100%;
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 10;
}

.menu {
  display: flex;
  align-items: center;
  width: 1140px;
}

.empty {
  width: 25%;
}

.logo {
  width: 50%;
  display: flex;
  justify-content: center;
}

.menu-item {
  width: 25%;
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
}


/* –– content –– */


main {
  padding-top: 7rem;
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  max-width: 1140px;
  margin: 0 auto;
  grid-column-gap: 30px;
  grid-row-gap: 80px;
  padding: 0 30px;
}

.text {
  grid-column: 5 / 11;
  justify-items: center;
  margin-top: 10rem;
}

.link {
    margin: 0;
    text-decoration: underline;
    text-underline-offset: .4em;
}

.text_contact,.text_about, .text_imprint {
  margin-bottom: 8rem;
}

.text_about {
  margin-top: -10rem;
}

.wrapper > div img {
  max-width:100%;
}

.item, .item_workspace {
    grid-column: 1 / 5;
    justify-items: center;
    position: relative;
}

.item, .item_workspace > div img {
  max-width:100%;
  margin-bottom: -4px;
}

.image_bg_portrait {
    background-color: #000;
    position: relative;
    margin-top: 50vh;
}

.item::before {
    content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.image_bg_workspace {
    background-color: #fc9b68;
    position: relative;
    margin-top: -100vh;
}

/* –– footer –– */

footer p,a {
  font-size: 1.8rem;
  text-align: center;
  margin: 0 20px;
  } 

.footer {
  padding: 15rem 0 6rem 0;
}

.copyright {
  padding-bottom: 20px;
}


/* –– T A B L E T ––*/

@media only screen and (max-width: 768px) {

  .text {
    grid-column: 5 / 13;
  }

}


/* –– M O B I L E ––*/

@media only screen and (max-width: 530px) {



  /* –– navigation --*/

  .empty {
    width: 20%;
  }

  .logo {
    width: 60%;
    display: flex;
    justify-content: center;
  }

  .menu-item {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
  }


  /* –– content --*/

  .wrapper {
    grid-column-gap: 0;
    grid-row-gap: 40px;
    padding: 0 20px;
  }


  /* content */

  .text {
    grid-column: 1 / 13;
    justify-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .item , .item_workspace {
    grid-column: 2 / 12;
    justify-items: center;
    position: relative;
  }

  .item_workspace {
    margin-bottom: 10rem;
  }

  .image_bg_portrait {
    background-color: #000;
    position: relative;
    margin-top: 2vh;
  }
}

.image_bg_workspace {
    background-color: #000;
    position: relative;
    margin-top: 2vh;
}
