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

html {
  box-sizing: border-box;
}

html, body {
  height: 100vh;
  margin: 0px;
  word-break: break-word;
}

/*----------FONTS--------------*/
@font-face {
  font-family: 'JosefinSans';
  src: url('/Fonts/JosefinSans-Medium.ttf');
}

@font-face {
  font-family: 'TwCenMT';
  src: url('/Fonts/TwCenMT.ttf');
}

@font-face {
  font-family: 'DIN';
  src: url('/Fonts/DINCondensedBold.ttf');
}

@font-face {
  font-family: 'HelveticaBold';
  src: url('/Fonts/HelveticaNeueLTStd75Bold_22539.ttf');
}

body {
  display: flex;
  /* overflow: hidden; */
  font-family: 'helvetica';
}

#index-body {
  display: flex;
  justify-content: center;
  background: url("/Pictures/IMG_0001.jpg");
  height: 100vh;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

h1 {
  font-family: 'HelveticaBold';
  font-size:
    /*70px*/
    4.375rem;
  font-style: normal;
  padding-bottom: 0px;
  margin: 0px 0px;

}

h2 {
  font-size:
    /*30px*/
    1.875rem;
  margin: 0px;

}

h3 {
  font-size:
    /*20px*/
    1.25rem;
  margin: 0px;

}

a, p {
  font-family: 'helvetica';
  font-style: normal;
  font-size: 1rem;

}

p {
  line-height: 1.6;
  font-size: 1rem;
}

/*------MENU DESKTOP----------*/
#menuDesktopWrapper {
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: auto;
  position: fixed;
  top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  /* background: #ffffff; */
  backdrop-filter: blur(10px) brightness(80%);
  -webkit-backdrop-filter: blur(10px) brightness(80%);
  border-radius: 18px;
}

#menuDesktop {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0px;
}

#menuDesktop a {
  display: inline-block;
  color: white;
  position: relative;
  text-decoration: none;
  padding-left: 20px;
  padding-right: 20px;
  transition-duration: 0.4s;
}

#menuDesktop a:hover {
  color: rgb(200, 200, 200);
}

#SpotifyMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s;
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}

#SpotifyMenu a {
  display: flex;
}

#spotifyLogo {
  width: 100px;
}

#SpotifyMenu:hover {
  transform: scale(1.1);
}

/*-----INDEX CONTENT-------*/
.frontPageContent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  height: auto;
  margin: 30px;
  color: white;
  /*background-image: url('/Pictures/FpBg.png');
  background-repeat: no-repeat;
  background-position: center, top;
  background-attachment: fixed;
  background-size: cover;*/
}

/*.frontPageContentWrapper iframe {
  margin: 40px;
}*/
.YT {
  -webkit-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.19);
}

.socialIcons {
  margin: 100px 0px 0px 0px;
  max-width: auto;
  padding: 10px;
  border-radius: 18px;
  backdrop-filter: blur(10px) brightness(80%);
  -webkit-backdrop-filter: blur(10px) brightness(80%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.fa {
  text-align: center;
  text-decoration: none;
  margin: 15px 15px 15px 15px;
  transition: 0.4s;
  color: rgb(255, 255, 255);
}

.fa:hover {
  color: rgb(200, 200, 200);
}

/*FACEBOOK*/
.fa-facebook {}

.fa-facebook:hover {}

/*YOUTUBE*/
.fa-youtube-play {}

.fa-youtube-play:hover {}

/*INSTAGRAM*/
.fa-instagram {}

.fa-instagram:hover {}

/*SPOTIFY*/
.fa-spotify {}

.fa-spotify:hover {}

/*APPLE*/
.fa-apple {}

.fa-apple:hover {}

/*MAIL*/
.fa-envelope {}

.fa-envelope:hover {}

/*------Discography-----------*/
#index-discography {
  background-color: grey;
  display: flex;
  justify-content: center;
  height: auto;
}

.sections {
  display: flex;
  flex-direction: column;
  height: auto;
}

.section {
  width: 100vw;
  height: auto;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section1 {
  background-color: rgb(255, 238, 255);
  color: rgb(225, 123, 123);

}

.section2 {
  background-color:rgb(88, 116, 123);
  color: white;
}

/*---------------- MOBILE--------------*/
@media only screen and (max-width: 800px) {
  #menuDesktopWrapper {
    display: none;
  }

  .frontPageContentWrapper2 {
    padding-top: 90px;
  }

  #mobile-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-top: 20px;
    z-index: 99;
  }

  .spotifyMenuLink {
    width: auto;
    /*padding: 10px;
    backdrop-filter: blur(10px) brightness(80%);
    -webkit-backdrop-filter: blur(10px) brightness(80%);
    border-radius: 15px;*/
    z-index: -2;
    /* z-index: 9; */
    /*position:fixed;*/
  }

  #nav-container {
    width: auto;
  }

  /* .menuBg {
    background-color: blue;
    width:100vw;
    height:5vh;
    position:absolute;
    padding:0px;
  } */
  .h1TooBig {
    font-size: 50px;
  }
}

@media only screen and (min-width: 800px) {
  #Hamburger, #SpotifyMobileMenu, #nav-container, #nav-container2, .spotifyMenuLink {
    display: none;
  }


}
