html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

#sketch-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* canvas sotto tutto */
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0; 
}

footer {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  box-sizing: border-box;
  font-family: 'Anybody', sans-serif;
  font-size: 18px;
  z-index: 10; /* sopra il canvas */
  pointer-events: auto; /* link cliccabili */
}

footer a.scrittinalogo {
  font-family: "Anybody", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal; 
  color: rgb(255, 254, 248);
  font-size: 18px;
  text-decoration: none;
}


.myButton {
  font-family: 'Anybody', sans-serif;
  font-size: 14px;
  background-color: #35393D;
  color: #E8E8DD;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #E8E8DD;
}

.myButton2 {
  font-family: 'Anybody', sans-serif;
  font-size: 14px;
  background-color: #35393D;
  color: #E8E8DD;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #E8E8DD;
}