@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');
* {
  font-family: 'PT Serif', serif;
}
body {
  background: RGBA(33, 40, 51, 1);
  margin: 0;
  overflow: hidden;
}
canvas {
  height: 100vh;
  width: 100vw;
}

#modal {
  align-content: center;
  background: rgb(255,255,255);
  background: linear-gradient(17deg, rgba(255,255,255,.5) 0%, rgba(241,233,192,.5) 6%, rgba(194,230,237,.5) 100%);
  backdrop-filter: url(#noiseFilter);
  display: grid;
  height: 100%;
  justify-content: center;
  left: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
}
.input {
  background: rgb(255,255,255);
  background: linear-gradient(17deg, rgba(255,255,255,1) 0%, rgba(241,233,192,1) 6%, rgba(194,230,237,1) 100%);
  border: 3px solid #f1e9c0;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0,0,0,.5);
  padding: 10px;
}
.input > * {
  display: block;
  margin: 10px;
  max-width: 300px;
}
label {
  font-size: 15px;
  font-weight: bold;
}
input {
  padding: 10px;
  width: 300px;
}
svg {
  display: none;
}

#modal.hidden {
  display: none;
}