* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  top: 0;
  width: 100%;
}

header button {
  background-color: #8f0091;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
}

.share-icon {
  width: 14px; /* Ajusta el tamaño según sea necesario */
 
}


main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.content {
  text-align: center;
}

.logo {
  max-width: 300px;
}

.animated-gif {
  max-width: 300px;
  margin: 0px 0;
}

audio {
  margin-top: 20px;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

#volumeControl {
  width: 300px;
}

.feedback-message {
  font-size: 16px;
  color: #ffffff;
  margin-top: 10px;
  text-align: center;
}

.control-btn {
  cursor: pointer;
  width: 50px; /* Ajusta el tamaño según sea necesario */
  margin: 0 5px;
}

.social-icon {
  width: 30px; /* Ajusta el tamaño según sea necesario */
}


footer {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0);
}

footer a {
  font-size: 20px;
  color: #333333;
  text-decoration: none;
}

footer button {
  background-color: #8f0091;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
}



@media (max-width: 600px) {
  .logo {
      max-width: 180px;
  }

  .animated-gif {
      max-width: 150px;
  }

  #volumeControl {
      width: 150px;
  }
}
