@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
  margin: 0;
  padding: 0;
  background: rgb(255,219,235);
  background: linear-gradient(90deg, rgba(255,219,235,1) 0%, rgba(255,255,255,1) 100%);
  font-family: 'Pacifico', cursive;
  
}


h1 {
  font-size: 4em;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 100;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 2rem;
}

.mainImg {
  margin: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 50vh;
  max-width: 90vw;
  height: auto;
  border-radius: 8px;
}

.button-container {
  display: flex;
  justify-content: center;
}

#playSoundButton {
  background: rgb(255, 69, 209);
  background: linear-gradient(90deg, rgba(255, 69, 209, 1) 0%, rgba(215, 19, 137, 1) 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  min-width: 20vw;
  font-size: 32px;
  cursor: pointer;
  transition-duration: 0.4s;
  border-radius: 50px; /* Make the button a pill shape */
}

#playSoundButton:hover {
  transform: scale(1.05); /* Scale the button on hover */
}



@media (max-width: 768px) {
  h1 {
    font-size: 3em;
  }

  .container {
    padding: 1rem;
  }
  
  .mainImg {
    margin: 0.5rem;
  }
  
  #playSoundButton {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 340px) {
  h1 {
    font-size: 2em;
  }
}
