@font-face {
  font-family: OrLemmen_Light;
  src: url(../font/OrLemmen-LightItalic.woff);
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  background-color: rgb(25,43,49); 
 /*  background-image: url("../images/bg.jpg");*/ 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; 
  /*background-image: radial-gradient(circle, rgba(0,255,175,0.2) 20%, rgba(0,255,175,0) 90%);*/
  font-family: OrLemmen_Light;
  /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
  /*color: #1c3071; */
  color: #ffffff; 
  line-height: 1;
}

video {  
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35;
  color: #192b31;
}

h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35; 
  color: #ffffff;
  letter-spacing: 0.1em;

}

h3 {
  font-size: 50px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: #192b31;
}

.body-wrapper {
  min-height: 100vh;
  display:flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

.main-frame {
  position: relative;
  width: calc(100% - 50px);
  height: calc(100vh - 50px);
}

.overlay {
  opacity: 0;
  position:fixed;
  z-index: -1;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: radial-gradient(circle, rgba(0,255,175,1) 20%, rgba(0,255,175,0.07) 90%);
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: all 2s ease-in-out;
}

.overlay-text {
  position: fixed;
  display: flex;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  transition: all 2s ease-in-out;
}

.overlay-text > p {
  font-size: 25px;
  font-variant-ligatures: none;
  letter-spacing: 0.2em;
  filter:blur(1px);
}


#overlay-content {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 75px;
  transition: overlay 3s ease;
 
}

.overlay-close {
  position: fixed;
  top: 25px;
  right: 25px;
  font-size: 35px;
  cursor: pointer;
}

.content {
  display: none;
  transition: 3s ease;
}

.content > h1 {
  margin-bottom: 25px;
}

.content > p {
  font-size: 24px;
}

.name-header {
  opacity: 0;
  transition: all 2s ease-in;
}

.links {
  position:absolute;
  opacity: 0;
  bottom:0;
  display: flex;
  flex-direction: column;
  transition: all 2s ease-in;
}

.link {
  cursor: pointer;
}

.poster-image {
  position:absolute;
  top: 0;
  left:0;
  width: 100%;
  height: 100%;
  display:flex;
  justify-content: center;
  align-items:center;
  transform: rotate(-10deg);
  filter:blur(20px); 
  opacity: 0.8;
}

.poster-image > img {
    display: none;
    position: absolute;
    max-width: 800px;
    max-height: 800px;
}

.poster-image > .hover {
  transition: opacity 1s ease-out;
}

.socials {
  display:flex;
  position:absolute;
  opacity: 0;
  right:0;
  bottom: 0;
  width: 200px;
  justify-content: space-between;
  font-size: 24px;
  transition: all 1s ease-in;
}

.socials > a {
  text-decoration: none;
  color: #ffffff;
}

.gallery {
  display:flex;
  flex-wrap: wrap;
  justify-content:space-between;
  margin-top: 25px;
}

.gallery > a  {
  margin-bottom: 25px;
}

.centered {
  display:flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.discography > .item > p {
  text-align:center;
}

.discography > h1 {
  margin-bottom: 55px;
}

.discography > h3 {
  margin-bottom: 55px;
}

.discography > .item > h4 {
  font-size: 20px;
}

.discography > .item > iframe {
  max-width: 700px;
  margin-top: 25px;
  margin-bottom: 25px;
  justify-content: center;
  align-items: center;

}

.discography > .item {
  margin-bottom: 100px;
}

hr {
  border: 0.5px solid #192b31;
;
}

.image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

@media only screen and (min-width: 1200px) {
  #switch-image {
    max-width: 800px;
    height: auto;
  }

  .image-wrapper > img {
    max-width: 800px;
    height: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
  #switch-image {
    max-width: 600px;
    height: auto;
  }

  .image-wrapper > img {
    max-width: 600px;
    height: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #switch-image {
    max-width: 500px;
    height: auto;
  }

  .image-wrapper > img {
    max-width: 500px;
    height: auto;
  }
}

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

  .poster-image {
    align-items: start;
  }
  #switch-image {
    max-width: 200px;
    max-height: 175px;
    margin-top: 105px;
  }

  .links > .link > h2 {
    font-size: 24px !important;
  }

  .image-wrapper > img {
    max-width: calc(100% - 50px);
    height: auto;
  }

  .gallery {
    justify-content: center;
  }

  .socials {
    flex-direction: column;
    width: 25px;
  }

  .socials > a {
    margin-bottom: 8px;
  }

  h3 {
    font-size: 28px;
  }

  .discography > h3 {
    font-size: 24px;
  }

  .discography > .item > h1 {
    font-size: 18px;
  }

  #overlay-content {
    padding-top: 100px;
  }

}

.heading {
  text-align: center;
  margin-bottom: 55px;
}

.services {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin-bottom: 50px;
}

.services > a {
  margin-right: 22px;
  height: 30px; 	
  text-decoration: none;
  color: #1c3071;
}
