* {
  box-sizing: border-box;
}

body {
  font-size: xx-large;
  color: white;
  background: black;
  overflow: hidden;
}

h1 {
  font-size: min(6vw, 70vh);
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

center {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.glow {
  color: #fff;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 3px #e60073, 0 0 4px #e60073, 0 0 5px #e60073, 0 0 6px #e60073, 0 0 7px #e60073;
  }
  
  to {
    text-shadow: 0 0 2px #fff, 0 0 4px #ff4da6, 0 0 6px #ff4da6, 0 0 7px #ff4da6, 0 0 8px #ff4da6, 0 0 9px #ff4da6, 0 0 10px #ff4da6;
  }
}

#submitBtn {
  cursor: not-allowed;
}