* {
  box-sizing: border-box;
}

body,html {
  background-color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden; 
}

.glslCanvas {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10vh 0;
  width: 100vw;
  height: 100vh;
  color: #F3F4F5;
  -webkit-backdrop-filter: blur(4rem) contrast(1.5);
  backdrop-filter: blur(4rem) contrast(1.5);
  transition: backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 15s;
  mix-blend-mode:hard-light;
}

.container:after {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url('noise.gif');
  background-size: 200px 200px;
  mix-blend-mode: hard-light;
  opacity: .23;
}



.word {
  display: flex;
  flex-direction: column;
  color: #78f446;
}

.common-english {
  color: #121116;
}

.most-vulgar {
  color: rgb(239, 35, 56);
}

.most-vulgar .written {
  text-decoration: line-through;
}

.word .written,
.word .written {
  font-size: 10vw;
  line-height: 1;
  letter-spacing: -.08ch;
  margin: 0;
  font-family: sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  text-anchor: middle; /* align center */
  dominant-baseline: middle; /* vertical alignment fix */
}

.word .spoken,
.word .spoken {
  font-size: 5vw;
  letter-spacing: .3ch;
  font-family: monospace;
  margin: 0;
  font-weight: 100;
  text-anchor: middle; /* align center */
  dominant-baseline: middle; /* vertical alignment fix */
}