html {
  box-sizing: border-box;
}

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

body {
  display: block;
  margin: auto;
  background-color: white;
  font-family: "neuzeit-grotesk", Helvetica, sans-serif;
}

/* header element */
header {
  width: 100%;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  position: fixed;
  justify-content: space-between;
  z-index: 10;
  background-color: white;
  border-bottom: solid 1px;
}

header h1 {
  font-size: 16px;
  font-weight: 700;
  padding-right: 50px;
  letter-spacing: 0.5px
}

header h1 a {
  text-decoration: none;
  color: black;
  cursor: crosshair;
}

nav a {
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  padding-left: 10px;
  color: black;
  cursor: crosshair;
}

nav a:hover {
  background-color: beige;
  transition: .4s;
}

/* main element */
div.container {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 40px;
}

/* main left */
section.description {
  width: 35%;
  float: left;
  position: fixed;
  padding-right: 40px;
}

h3 {
  font-family: "linotype-sabon", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.project-title h3 {
  text-transform: uppercase;
  font-style: italic;
}

.note p {
  padding-top: 20px;
  font-family: "linotype-sabon", serif;
  font-size: 12px;
  font-style: italic;
  line-height: 1.3;
  color: grey;
}

.more-works {
  margin-top: 60px;
  padding-right: 20px;
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.more-works a {
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  color: black;
  cursor: crosshair;
}

.more-works a:hover {
  background-color: beige;
}

.mobile-show {
  display: none;
}


/* right section */
section.showcase {
  width: 65%;
  float: right;
  right: 20px;
  padding-left: 40px;
}

.showcase img, video{
  max-width: 100%;
  display: block;
  height: auto;
  margin-bottom: 10px;
}

#last-image img{
  margin-bottom: 0px;
}

/* footer element */
footer {
  position: relative;
  height: 40px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: row;
  border-top: solid 1px;
  background-color: white;
}

footer p {
  font-size: 12px;
  font-weight: 300;
  color: grey;
}

/* media query */
@media only screen and (max-width:800px) {
  section.description {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    padding-right: 0;
  }

  .more-works {
    display: none;
  }

  .mobile-show {
    position: relative;
    height: 60px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-show a {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: black;
    cursor: crosshair;
  }

  .mobile-show a:hover {
    background-color: beige;
  }

  /*
  .sp-more-works a {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: black;
    cursor: crosshair;
  }

  .sp-more-works a:hover {
    background-color: beige;
  }
  */
  section.showcase {
    width: 100%;
    display: block;
    position: relative;
    right: 0;
    padding-left: 0px;
  }
}
