    body {
      margin: 0
    }

   .quiz {
      display: flex;
      height: 100vh;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    input[type=number] {
      appearance: textfield;
    }

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

    .quiz__form--field {
      display: block;
      padding: 0 20px;
      margin-bottom: 10px;
      margin: 10px;
      background: #E9EFF6;
      line-height: 40px;
      border-width: 0;
      border-radius: 20px;
      font-family: 'Roboto', sans-serif;
    }

    .quiz__form--submit {
      color: #232323;
      background: transparent;
      border: 1px solid #232323;
      position: relative;
      font-size: 14px;
      letter-spacing: .3em;
      font-family: 'Montserrat', sans-serif;
      padding: 17px 34px 17px 39px;
      transition: .2s ease-in-out;
      cursor: pointer;
    }

    .quiz__form--submit:before {
      content: "";
      position: absolute;
      top: 5px;
      left: 5px;
      width: 100%;
      height: 100%;
      background: #32D4E2;
      z-index: -1;
      transition: .25s ease;
      transform: translate(0, 0);
    }

    .quiz__form--submit:hover:before {
      transform: translate(4px, 4px);
    }

    .quiz__form--result {
      padding: 15px;
      margin: 0;
      left: 34px;
      top: 19px;
      border-radius: 50%;
      background: rgba(242, 124, 176, .7);
      font-family: 'Lato', sans-serif;
    }
