/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('./fonts/roboto-v30-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/roboto-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('./fonts/roboto-v30-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-900italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  src: url('./fonts/roboto-v30-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
	
body {
	margin: 0;
	padding: 0;
	background-color: #F61DE5;
	font-size: 18px;
	font-family: 'Roboto', helvetica, arial;
	color: #F4E534;
}

h1 {

}

h2 {
  margin-top: 0;
	margin-bottom: 48px;
  text-align: center;
	font-size: 1em;
	font-weight: 900;
  font-style: italic;
  text-shadow: 1px 1px 1px #000;
}

.bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('./images/tyma-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.logo {
  display: inline-block;
	width: 400px;
  max-width: 80%;
}

.play-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30vh;
}

audio {
}

.play {
  display: inline-block;
  width: 90px;
  height: 90px;
  background-image: url('./images/icon-play.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}

  .play.is--active {
    background-image: url('./images/icon-pause.svg');
  }

  .play:hover {
    transform: scale(1.1);
  }

.pause {
  
}

.content {
  display: flex;
  justify-content: center;
}

  .content-left {
    width: 35%;
    max-width: 500px;
    padding-left: 30px;
  }
  
  .content-center {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 30%;
  }
  
  .content-right {
    width: 35%;
    max-width: 500px;
    padding-right: 30px;
  }
  
.gig {
  display: flex;
  margin-bottom: 30px;
  font-weight: 900;
  text-shadow: 1px 1px 1px #000;
}

  .gig__left {
  }
  
  .gig__right {
  }
  
  .gig__date {
    margin-right: 30px;
    font-style: italic;
  }
  
  .gig__name {
  }
  
  .gig__location {
    font-style: italic;
  }
  
.gig-empty {
  text-align: center;
  text-shadow: 1px 1px 1px #000;
}

.footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-top: 66px;
  padding-bottom: 30px;
}

  .soziale-icons-wrapper {
    text-align: center;
  }

  .soziale-icons {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
    .soziale-icons li {
      display: inline-block;
      margin-right: 6px;
      margin-left: 6px;
      transition: scale .2s;
    }
    
    .soziale-icons li:not(.disabled):hover {
      transform: scale(1.1);
    }
    
    .soziale-icons li.disabled {
      opacity: 0.5;
    }
    
    .soziale-icons img {
      width: 32px;
    }
  
  .footer-links-wrapper {
    width: 100%;
    margin-top: 2px;
  }
    
  .footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  
    .footer-links li {
      display: inline-block;
    }
  
    .footer-links a {
      display: inline-block;
      margin-right: 6px;
      margin-left: 6px;
      font-weight: 300;
      font-size: 14px;
      text-decoration: none;
      text-transform: uppercase;
      color: #fff;
    }
    
      .footer-links a:hover {
        text-decoration: underline;
        text-decoration-style: dotted;
      }
      
@media only screen and (min-width: 64.063em) {
  background-attachment: fixed;
}
    
@media (min-width: 100em) {
  body {
    font-size: 22px;
  }
  
  .play {
    width: 114px;
    height: 114px;
  }
  
  .gig {
    margin-bottom: 40px;
  }
  
  .gig__date {
    margin-right: 40px;
  }
  
  .footer {
    transform: translateY(-60px);
  }
  
  .soziale-icons img {
    width: 42px;
  }
  
  .footer-links a {
    font-size: 16px;
  }
}

@media (max-width: 48em) {
  h2 {
    font-size: 26px;
  }
  
  .gig__date { 
    font-size: 16px;
  }
  
	.logo {
		width: 80%;
	}

  .play {
    width: 66px;
    height: 66px;
    background-image: url('./images/icon-play-i.svg');
  }
  
    .play.is--active {
      background-image: url('./images/icon-pause-i.svg');
    }
  
  .content {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-left {
    width: 100%;
    margin-top: 100px;
    padding-left: 0;
    order: 2;
  }
  
  .content-center {
    width: 100%;
    order: 1;
  }
  
  .content-right {
    width: 100%;
    margin-top: 100px;
    padding-right: 0;
    order: 3;
  }
  
  .footer-links-wrapper {
    margin-top: 12px;
  }
}

@media (max-width: 320px) {
}