body {
  background: linear-gradient(#00001C, #00000C);
  color: white;
  font-family: "Petit Formal Script", cursive;
  overflow: hidden;
}

.content {
  width: 100%;
  overflow: hidden;
}
.content .title {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 0;
  font-size: 1.5em;
}
.content .title svg {
  display: block;
  max-height: 50vh;
  max-width: 100%;
}
.content .title h2:nth-of-type(2) {
  margin-left: 2em;
}
input[type=text] {
  background-color: #00000C;
  color: white;
  padding: 12px 20px;
  margin: 8px 0;
  border: 2px solid white;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Petit Formal Script", cursive;
  font-size: 0.75em;
}
button {
  background-color: #00000C;
  color: white;
  padding: 6px 10px;
  margin: 8px 0;
  border: 2px solid white;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Petit Formal Script", cursive;
  font-size: 0.75em;
  cursor: pointer;
}
button:hover {
  background-color: #05052C;
}