* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: whitesmoke;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

#container {
  /* mix-blend-mode: difference; */
  z-index: 1;
  height: 100vh;
  width: 100vw;
  background: none;
  position: absolute;
}

#canvasContainer {
  z-index: -1;
  filter: blur(56px) saturate(1.2);
}

canvas {
  position: absolute;
  pointer-events: none;
  background-color: whitesmoke;
  background-image: linear-gradient(135deg, #43cbff 10%, #9708cc 100%);
  cursor: pointer;
  height: 100vh;
  width: 100vw;
}

ul {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 40px;
  line-height: 50px;
  list-style: none;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  font-weight: bold;
  text-align: center;
  z-index: -1;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

#contents {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

ul,
#contents {
  max-width: 95vw;
  max-height: 95vh;
  min-height: 100px;
  min-width: 200px;
  padding: 30px;
  background: 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  backdrop-filter: blur(20px);
}

a {
  display: inline-block;
  padding: 10px 20px;
  /* color: #8e44ad; */
  color: whitesmoke;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}
a:active {
  /* color: #732d91; */
  transform: translateY(2px);
}
#formContainer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
input {
  width: auto;
  backdrop-filter: blur(70px);
  background: 0 0;
}
button {
  margin-left: 10px;
  background-color: #007bff;
  color: white;
}
button:active {
  background-color: #0056b3;
}
button,
input {
  font-size: 25px;
  height: 40px;
  margin: 5px 0;
  padding: 5px;
  border: 1px solid black;
  border-radius: 5px;
  text-align: center;
}
#counter {
  position: fixed;
  bottom: 10px;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
