* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

h1 {
  color: #000;
  margin-bottom: 1rem;
  margin-left: 50%;
  font-size: 2.4rem;
  font-weight: 700;
}


h2 {
  color: #fff;
  margin-bottom: 1rem;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 15%;
  font-size: 2.4rem;
  font-weight: 700;
}

h4 {
  color: #fff;
  font-size: 1rem;
  margin-left: 5%;
  margin-right: 5%;
}

.estilo {
  font-size: 2.4rem;
  color: #fff;
  text-shadow: 0 0 10px #ff00de, 0 0 20px #ff00de, 0 0 30px #ff00de, 0 0 40px #ff00de, 0 0 55px #ff00de, 0 0 75px #ff00de;
}



p {
  color: #fff;
}

.choice-container {
  display: flex;
  margin: 15%;
  width: 0%;
  font-size: 1.8rem;
  background-color: white;
}

.choice-container:hover {
  cursor: pointer;
  transition: transform 150ms;
}

.choice-prefix {
  padding: 15px 25px;
  background-color: #56a5eb;
  color: white;
}

input {
  font-family: sans-serif;
  padding: 20px 20px;
  color: white;
  font-size: 18px;
  text-indent: 8px;
  border-radius: 10px;
  outline: none;
  background: none;
  border: grey;
  border-width: 1px;
  letter-spacing: 3px;
  transition: .3s;
}

input:focus {
  padding: 25px 25px;
  box-shadow: 0 0 15px rgb(225, 9, 245),
              0 0 75px rgb(225, 9, 245);
  border: 2px solid rgb(225, 9, 245);
}

input::placeholder {
  color: grey;
}

.question-container {
  display: flex;
  align-items: center;
}

form {
  margin-top: 20%;
  margin-left: -4%;
}