html, body {
    width: 96%;
    height: 100%;
    padding: 0;
    margin: 0 2% 0 2%;
  }
  body {
    text-align: center;
  }
  img {
    margin-top: 50px;
    width: 350px;
    @media (max-width: 350px) {
      width: 100%;
    }
  }
  h2 {
    margin: 50px 0 20px 0;
  }
  .form-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  form {
    width: 620px;
    @media (max-width: 670px) {
      width: 100%;
    }
  }
  .form-control {
    padding: 13px;
  }
  .form-control:focus {
    border-color: #BDBDBD;
    box-shadow: 0px 0px 10px 1.5px rgba(0, 0, 0, 0.1);
  }
  textarea.form-control {
    min-height: 200px;
  }
  button.btn-dark {
    background-color: #424242;
    padding: 10px;
  }
  #result {
    margin: 20px;
  }
