input[type=text] {
  width: 400px;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border-radius: 10px
}

input,
input::-webkit-input-placeholder {
  font-family: 'Cinzel', serif;
    font-size: 20px;
}

html {
    font-family: 'Cinzel', serif;
    background-color: black;
    color: black;
    height: 100%;
    margin: 0;
    background-image: url("background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: rgba(0,0,0,.6);
    color: #fff;
    text-align: center;
    padding-bottom: 50px;
    margin-bottom: 50px;
    margin-top: 50px;

    width: 80%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.send {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  background-color: darkviolet; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 10px;
  margin-left: 10px;
}

.title {
  padding-top: 20px;
  font-size: 65px;
  font-weight: 700;
}

.subtitle {
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 25px;
}

.helper {
  padding-top: 20px;
}

.answer {
  padding-top: 25px;
  font-size: 25px;
  font-weight: 800;
  height: 40px;
  padding-bottom: 25px;
}

.about {
  display: flex;
  justify-content: center;
}


.image {
  background-color: deeppink;
  border-radius: 50%;
  height: 200px;
  width: 200px;
}

@media screen and (max-width: 420px) {
  .title {
    padding-top: 20px;
    font-size: 21px;
    font-weight: 700;
  }

  .subtitle {
    padding-top: 15px;
    font-size: 15px;
  }

  .row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .container {
    margin-top: 20px;
  }

  input[type=text] {
    width: 250px;
    padding: 12px 20px;
    margin: 4px 0;
    box-sizing: border-box;
    border-radius: 10px
  }
  
  input,
  input::-webkit-input-placeholder {
    font-family: 'Cinzel', serif;
      font-size: 15px;
  }
}