body {
  margin: 0;
  background-color: rgb(205, 133, 63);
  background-image: url('pictures/background.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;   
  min-height: 100vh;
}

.my-box {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-radius: 8px; /* optional für abgerundete Ecken */
  padding: 20px;
  background: #fff;
  
 
}


h1{
    color: #000000;
    font-family: 'Roboto', sans-serif;
   }


   h2{

       color: #000000;
       font-family: 'Roboto', sans-serif;


   }
  h3{
    color: #000000;
    font-family: 'Roboto', sans-serif;

  }
  h4{
    color: #000000;
    font-family: 'Roboto', sans-serif;
  }
p{
  color: #000000;
  font-family: 'Roboto', sans-serif;
}


/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('../fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
src: local(''),
     url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
     url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
     url('../fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
     url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
     url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url('../fonts/roboto-v30-latin-500.eot'); /* IE9 Compat Modes */
src: local(''),
     url('../fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
     url('../fonts/roboto-v30-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
     url('../fonts/roboto-v30-latin-500.woff') format('woff'), /* Modern Browsers */
     url('../fonts/roboto-v30-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
     url('../fonts/roboto-v30-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-900italic - latin */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
src: url('../fonts/roboto-v30-latin-900italic.eot'); /* IE9 Compat Modes */
src: local(''),
     url('../fonts/roboto-v30-latin-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
     url('../fonts/roboto-v30-latin-900italic.woff2') format('woff2'), /* Super Modern Browsers */
     url('../fonts/roboto-v30-latin-900italic.woff') format('woff'), /* Modern Browsers */
     url('../fonts/roboto-v30-latin-900italic.ttf') format('truetype'), /* Safari, Android, iOS */
     url('../fonts/roboto-v30-latin-900italic.svg#Roboto') format('svg'); /* Legacy iOS */
}


.info-box{
    text-align: center;
    padding: 20px;
    font-size: 20px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  gap: 10px 20px; /* row-gap column gap */
  row-gap: 10px;
  column-gap: 20px;
}

.rotate-90 {
  transform: rotate(90deg);
  transform-origin: center center;
}

.carousel {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}



/* Grundstil für alle Buttons */
a[class^="btn-"] {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.2s ease-in-out;
}

/* YouTube */
.btn-youtube {
  background-color: #ff0000;
}
.btn-youtube:hover {
  background-color: #cc0000;
}

/* Instagram (Gradient) */
.btn-instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
.btn-instagram:hover {
  filter: brightness(0.9);
}

/* SoundCloud */
.btn-soundcloud {
  background-color: #ff5500;
}
.btn-soundcloud:hover {
  background-color: #cc4400;
}
