html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body {
  font-family: sans-serif;
  background: black;
  color: white;
  position: relative;
}

.title {
    top: 20px;
    text-align: center;
}

.silly-messages {
    position: relative;
    width: 100%;
    height: 100%;
}

.message {
    position: absolute;
    color: white;
    font-size: 1rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: black;
  pointer-events: none;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
