html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #252550;
  background-image: url("background.png");
  background-size: 100vw 100vh;
  background-position: center;
  font-family: Figtree;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#visualizer {
  width: 100%;
  height: 200px;
  background: #000000;
  display: block;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 10px;
}

.content {
  background: rgba(235, 245, 255, 0.75);
  padding: 50px;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 80vh;
  max-width:80vw;
}

h2 {
  background-color: rgba(0, 100, 255, 0.3);
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  border-radius: 8px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery img {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}