@font-face {
  font-family: neue-regular;
  src: url('../assets/neue-regular.ttf');

  font-family: neue-italic;
  src: url('../assets/neue-italic.ttf');

  font-family: saintecolombe-regular;
  src: url('../assets/saintecolombe-regular.otf');

  font-family: saintecolombe-italic;
  src: url('../assets/saintecolombe-italic.otf');
}

html {
  background-color: #000000;
  color: #ffffff;
}

body {
  font-family: saintecolombe-italic;
  display: flex;
  flex-direction: column;
  width: 100vw;
  overflow-x: hidden;
}

h1 {
  display: inline;
}

a,
a:visited,
a:active {
  font-family: saintecolombe-italic;
  color: #ffffff;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

hr {
  border: none;
  border-top: 1px dashed #ffffff;
  width: 55vw;
  padding-bottom: 10vh;
}

.musicContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: middle;
  justify-content: flex-start;
  width: 80%;
  margin-left: 10%;
}
.musicCoverContainer {
  display: block;
  width: 50%;
}
.musicCover {
  width: 100%;
  height: auto;
}

.musicTextContainer {
  width: 50%;
  margin-left: 5%;
}
.projectCoverContainerContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}
.projectCoverContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
}
.projectCover {
  width: 100%;
  height: auto;
}

.load {
  display: none;
}

.break {
  padding-bottom: 25vh;
}

.nav {
  display: flex;
  flex-direction: row;
  width: 90vw;
  height: 17vh;
  padding-left: 5vw;
  padding-right: 5vw;
  align-items: center;
  justify-content: space-between;

  position: fixed;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0)
  );
}

.nav-one {
  display: flex;
  flex-direction: row;
  width: 40vw;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1vw;
}

.smerz {
  width: 9vw;
}

.no-underline {
  display: inline;
  position: relative;
  /*overflow: hidden;*/
}

.no-underline:after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  width: 0;
  bottom: 0px;
  background: #ffffff;
  height: 1px;
  transition-property: width;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}

.no-underline:hover:after,
.no-underline:focus:after,
.no-underline:active:after {
  left: 0;
  right: auto;
  width: 100%;
}

.visited {
  font-family: saintecolombe-italic;
  text-decoration: underline;
}

.nav-two {
  display: flex;
  flex-direction: row;
  width: 13vw;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9vw;
}

.underline {
  border-bottom: 1px solid #ffffff;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}

.underline:hover {
  border-bottom: 1px solid #000000;
}

.nav-mobile,
.nav-mobile-one,
.nav-mobile-two,
.close {
  display: none;
}

.middle {
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: middle;
  justify-content: space-evenly;
  height: 100%;
  width: 100%;
}

.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  vertical-align: middle;
  justify-content: space-evenly;
  height: 100%;
  width: 80%;
  left: 0;
  right: 0;
  margin: auto;
  padding-bottom: 5%;
}

.maintext {
  font-size: 0.8em;
  line-height: 1.5em;
}
.maintext > p > a {
  border-bottom: 1px solid #ffffff;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}

.subtext {
  font-size: 0.7em;
  line-height: 1.3em;
}

.video-main,
.video,
.mix,
.for-og-etter {
  position: relative;
  width: 55%;
  left: 0;
  right: 0;
  margin: auto;
  padding-bottom: 42.18%;
  /*padding-bottom: 56.25%;*/
}

.video-main iframe,
.video iframe,
.mix iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-main {
  width: 40%;
  margin: 0;
  padding-bottom: 30%;
}

.cover,
.cover2 {
  width: 15%;
  text-align: center;
}

.cover img,
.cover2 img,
.cover3 img,
.photo1 img,
.cd1 img {
  width: 100%;
}

.cover3,
.cd1 {
  width: 25%;
  text-align: center;
}

.photo1 {
  width: 30%;
  text-align: center;
}

.social {
  display: flex;
  flex-direction: row;
  width: 20vw;
  height: 100%;
  padding-left: 40vw;
  padding-right: 40vw;
  align-items: center;
  justify-content: space-between;
  padding-top: 10vh;
  font-size: 0.9vw;
}

.title {
  width: 55vw;
  left: 0;
  right: 0;
  margin: auto;
  text-align: right;
  font-style: italic;
  padding-top: 2vh;
  padding-bottom: 2vh;
  font-size: 0.9vw;
}

@media only screen and (min-device-width: 1px) and (max-device-width: 1024px) and (orientation: portrait) {
  hr {
    width: 90%;
  }

  .musicContainer {
    flex-direction: column;
  }
  .musicCoverContainer {
    width: 100%;
  }
  .musicTextContainer {
    padding-top: 5%;
    padding-bottom: 10%;
    width: 100%;
    text-align: center;
  }
  .projectCoverContainer {
    width: 100%;
  }

  .break {
    padding-bottom: 12vh;
  }

  .nav {
    height: 10vh;
  }

  .nav-one,
  .nav-two {
    display: none;
  }

  .nav-mobile {
    display: flex;
    flex-direction: row;
    width: 100vw;
    font-size: 3vw;
    align-items: center;
    font-size: 1.1vw;
  }

  .smerz {
    display: none;
  }

  .smerz-mobile {
    width: 15vw;
  }

  .nav-mobile-one {
    display: none;
    flex-direction: column;
    position: fixed;
    width: 100vw;
    height: 50vh;
    padding-top: 25vh;
    padding-bottom: 25vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    vertical-align: middle;
    justify-content: space-around;
    font-size: 4vw;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2;
  }

  .close {
    display: none;
    position: fixed;
    top: 2vh;
    right: 4vw;
    z-index: 4;
    font-size: 3vw;
  }

  .nav-mobile-two {
    display: flex;
    flex-direction: row;
    width: 90vw;
    height: 7.5vh;
    padding-left: 5vw;
    padding-right: 5vw;
    align-items: center;
    text-align: center;

    position: fixed;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0));
  }

  .nav-three {
    display: flex;
    flex-direction: row;
    width: 90vw;
    align-items: center;
    justify-content: space-evenly;
    font-size: 2.5vw;
  }

  .middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    justify-content: space-evenly;
    height: 100%;
    width: 100%;
  }

  .left {
    display: flex;
    flex-direction: column;
    vertical-align: middle;
    justify-content: space-evenly;
    height: 100%;
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
  }

  .video-main,
  .video,
  .mix {
    position: relative;
    width: 90%;
    padding-bottom: 50.63%;
  }

  .video-main {
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    padding-bottom: 67.5%;
  }

  .cover,
  .cover2,
  .cover3,
  .photo1,
  .cd1 {
    width: 90%;
    padding: 0;
    padding-top: 3vh;
    padding-bottom: 10vh;
  }

  .cover img,
  .cover2 img,
  .cover3 img,
  .photo1 img,
  .cd1 img {
    width: 100%;
  }

  .cover2 {
    padding-bottom: 3vh;
  }

  .social {
    display: flex;
    flex-direction: row;
    width: 60%;
    padding-left: 20%;
    padding-right: 20%;
    align-items: center;
    justify-content: space-between;
    padding-top: 2vh;
    padding-bottom: 10vh;
    font-size: 2vw;
  }

  .title {
    width: 90%;
    font-size: 3vw;
  }
}
