/* GENERAL */
  * {
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: Roboto, sans-serif;
    font-size: 15px;
  }

  section {
    border-bottom: 1px solid #ff7a00;
  }

  h1,h2,h3,h4 {
    color: #444;
  }

  h1 {
    font-family: 'Crete Round', sans-serif;
    font-size: 45px;
  }

  h2 {
    font-size: 55px;
  }

  h4 {
    font-size: 24px;
  }

  h3 {
    font-size: 30px;
  }

  p {
    line-height: 20px;
    color: #777;
    font-style: italic;
  }

  ul {
    list-style: none;
  }

  a {
    text-decoration: none;
    color: #444;
  }

  small {
    font-size: 13px;
  }

  form {
    margin: 60px 0 20px 0;
  }

  label {
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
    color: #777;
  }

  input,a {
    transition: box-shadow .3s;
  }

  input:hover,a:hover {
    box-shadow: 0 0 11px rgba(33,33,33,.2);
  }

  input[type="submit"]:hover, a:hover {
    background-color: #02b8dd;
  }

  input[type="text"] {
    padding: 10px;
    font-size: 20px;
    margin-right: 20px;
    border: 2px solid #ff7a00;
    border-radius: 13px;
  }

  input[type="text"]:hover {
    border: 2px solid #02b8dd;
  }

  input[type="text"]:focus {
    border: 2px solid #02b8dd;
  }

  .wrapper {
    width: 940px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .orange {
    color: #ff7a00;
  }

  .clear {
    clear: both;
  }
