
#container {
  display: flex;
  background-color: rgb(254, 211, 255);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: sans-serif;
  gap: 10px;
}

#title{
background: linear-gradient(90deg, #cc90fd, #1b87eb);
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  font-family: "Sigmar One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  text-align: center;
}

#canvas {
    display: block;
    border-radius: 12px;
    border: 5px solid rgb(178, 37, 243);
    height: 500px;
    width: 900px;
    background-color: rgb(254, 211, 255);
}

button {
  background-color: rgb(221, 91, 253);
  letter-spacing: 2px;
  font-family: "DynaPuff", system-ui;
  
}