* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: Arial, sans-serif;
  height: 100%;
  color: #000000;
  background-color: white;
}
header {
  position: sticky;
  width: 100%;
  top: 0;
  color: #ffffff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999999;
}
nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.song_btn_youtube {


  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 10px 10px 10px;
  font-weight: bold;
  cursor: pointer;

  }


  .song_btn_spotify {


    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    border-radius: 6px;
    padding: 10px 10px 10px 10px;
    font-weight: bold;
    cursor: pointer;

    }

.title_1 {
  text-shadow: 0.5px 0.5px black;
  

}



.hero {
  background: url('../images/bg_001.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

}
}
.hero-overlay {

  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}
.songs {
  padding: 50px 20px;
  background: #111;
  width: 800px;
}
.song {
  background: #222;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}
.song-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.song-thumb img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
}
.song-info {
  flex: 1;
  min-width: 200px;
}
.song-info h3 {
  margin-bottom: 10px;
}
.song audio {
  width: 80%;
  margin-top: 5px;
}
.song-links {
  margin-top: 10px;
}
.song-links a {
  margin-right: 15px;
  display: inline-block;
  color: #1db954;
  font-weight: bold;
}
footer {
  background: #000;
  color: #aaa;
  padding: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2em;
  }
  nav a {
    margin-left: 10px;
    font-size: 0.9em;
  }
}


@media (max-width: 600px) {
.songs {

  width: 100%;
}}

.kontakt {
  background: #EBEBEB;
  padding: 40px 20px;
  text-align: center;
}
.kontakt h2 {
  margin-bottom: 30px;
}
.kontakt form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

.kontakt input {

  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
}


.kontakt textarea {

  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1.3em;
}
.kontakt button {
  padding: 10px;
  font-size: 1em;
  background: #1db954;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.kontakt button:hover {
  background: #17a74a;
}
