/* overall structure */
html,
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(255,240,245);
}

canvas {
  display: block;
}

/*heading */

h1 {
  text-align: center;
  font-family: 'Press Start 2P', cursive;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* description */
#content-container {
  padding: 50px;
  padding-top: 0px;
}

#sketch-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 20px;
  padding: 50px;
  padding-bottom: 0px;
}

#underline {
  text-decoration: underline;
  display: inline;
  font-weight: 200;
  font-style: bold;
  color: red;
}

.instructions, 
.donations,
.credits,
h2 {
  text-align: center;
  font-size: 20px;
}

ul {
  text-align: center;
  list-style-position: inside;
}



/* recording controls */
.recording-controls {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  margin-bottom: 23px;

}

/* donation and footer section */
.donate-btn {
  display: block;
  margin: 0 auto;
}

.donation, .credits {
  text-align: center;
  font-size: 15px;
  margin: 0px 10px;
  padding-bottom: 10px;
}

/* responsive design */
@media (max-width:576px) {
  #heading-emoji {
    display: none;
  }

  ul {
    padding: 0;
    margin: 0;
  }

  .instructions-wrapper {
    display: flex;
    justify-content: center;
  }

  .instructions {
    width: 30ch;
    margin: 0;
    text-align: center;
    padding-bottom: 30px;
  }
  .plant-animation {
    width: 300px;
    height: 300px;
  }
}

/* Lottie animation below donation section */
.plant-animation {
  margin: 0 auto;
}
