* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #12131d;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
  height: 100vh;
  padding-top: 65px;
  font-size: 16px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  width: 90%;
  max-width: 1200px;
  padding-bottom: 36px;
  gap: 4rem;

}

.header-section {
  max-width: 600px;
  /* margin-bottom: 80px; */
}

.header-section img {
  margin-bottom: 20px;
}

.header-section h1 {
  font-size: 55px;
  font-weight: 400;
}

.streaming-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 30px;
  /* margin-bottom: 32px; */
  border-radius: 36px;
}

.streaming-section h2 {
  align-self: start;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 400;
  color:#000000;
}

.canvas-container {
  width: 100%;
}

#audioCanvas {
  background-color: white;
  border: 1px solid #0000001A;
  height: 100%;
  width: 100%;
}

.streaming-section .button {
  background-color: #2346E6;
  color: white;
  padding: 12px 24px;
  margin-top: 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.streaming-section .button img {
  height: 32px;
  width: 32px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.button:disabled {
  background:#2F3247;
  cursor: not-allowed;
  color: #5e5f68;
}

.button:disabled img {
  opacity: 0.3;
}

.button:hover:not(:disabled) {
  background-color: #7C91F0;
  transform: scale(1.05);
}

.download-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 2rem 0;
  gap: 10rem;
  border-top: 1px solid #3E4046;
}

.download-button {
  display: inline-flex;
  align-items: center;
  background-color: black;
  border: 1px solid #A6A6A6;
  color: white;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 7px;
  cursor: pointer;
  /* width: 114px; */
}

.download-buttons .download-button img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.download-button .brand-store {
  font-weight: 500;
}


@media screen and (max-width: 768px) {
  body {
    padding-top: 42px;
  }

  .container {
    align-self: flex-start;
    width: 100%;
    padding: 0 10px 20px 10px;
  }

  .header-section img {
    margin-bottom: 5px;
    width: 150px;
  }

  .header-section h1 {
    font-size: 38px;
  }

  .streaming-section {
    background-color: transparent;
    padding: 0;
  }

  .streaming-section h2 {
    font-size: 24px;
  }

  .download-buttons {
    padding: 32px 10px;
    justify-content: center;
  }

  .download-button {
    font-size: 11px;
  }

  .download-buttons .download-button img {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 399px) {
  .download-buttons .download-button img {
    width: 18px;
    height: 18px;
  }
}






