.header {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #b8a7c9;
  padding: 15px 40px;
}
.logo img {
  height: 50px;
}
body{
      background: url('images/background.jpg') center/cover no-repeat;
}


.navbar nav a {
  margin: 0 10px;
  color: white;
}
.hero {
  background: url('images/bass.png') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text {
  color: white;
  text-align: center;
}
.hero h1 {
  font-size: 48px;
}
.info {
  display: flex;
  padding: 60px;
  gap: 40px;
}
.info .text {
  flex: 1;
}

.info .image img {
  width: 100%;
  border-radius: 10px;
}


.video-section {
  padding: 60px;
}


.video-container {
  display: flex;
  align-items: left;
  justify-content: left;
  gap: 30px;
  margin-top: 20px;
  width: 60%;
  height: 300px;
}

.video-text {
  width: 40%;
}

button {
  background: #b8a7c9;
  border: none;
  padding: 10px 20px;
  color: white;
  margin-top: 10px;
}
.footer {
  background: #b8a7c9;
  color: white;
  padding-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 0 40px 40px;
  gap: 30px;
}

.footer-section {
  flex: 1; 
  margin-bottom: 10px;
}


.footer-section a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 5px;
}


.footer-bottom {
  text-align: center;
  padding: 15px;
}
