* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-color: #6f6e6e;
    color: #2e0808;
    font-family: Helvetica, Arial, sans-serif;
  }

  header {
    padding: 20px 35px;
    background-color: #f1f1f1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: 80%;
  }

  header h1 {
    font-weight: bold;
    margin: 0;
    font-size: 36px;
    color: #302c17;
  }
  
  header a {
    text-decoration: none;
    color: #302c17;
  }
  
  header nav {
  
    margin: 7px 0;
  }
  
  header nav ul  {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    list-style: none;
  }
  
  header nav ul li a {
    padding: 10px 15px;
    font-weight: lighter;
    font-size: 1.25vw;
  }
  
  header nav ul li a:hover {
    background: #ef4040;
    color: #ffffff;
    text-shadow: none;
  }

  /* FOOTER STYLES START */
footer {
    background: #d4d3c9;
    padding: 40px 35px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  footer h2 {
    color: #252627;
    font-size: 20px;
    margin: 0;
  }
  
  footer div {
    line-height: 1.5;
    text-align: right;
  }
  
  footer a {
    color: #024e76;
  }
  /* END FOOTER STYLES */

  section {
    padding: 60px;
  }

/* HERO STYLES START */
.hero {
    background-image: linear-gradient(to right, rgb(200, 134, 68), rgb(208, 46, 46));
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    background-attachment: fixed;
    background-position: 80%;
  }
  
  .hero-form {
    border: 3px solid #9fa1a2;
    border-radius: 15px;
    background-color: rgba(202, 203, 203, 0.8);
    padding: 20px;
    color: #000000;
    width: 40%;
    margin: 3.5%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .hero-form h3 {
    font-size: 24px;
    margin: 0;
  }
  .hero-form p {
    margin: 5px 0 15px 0;
  }
  
  .hero-cta {
    width: 35%;
    text-align: right;
    margin: 3.5%;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
  }
  
  .hero-cta h2  {
    font-style: italic;
    font-size: 55 px;
    color: #bbbbbb;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .form-input {
    border: 1px solid #0e0e0f;
    display: block;
    padding: 7px 15px;
    font-size: 16px;
    color: #686a6b;
    width: 100%;
    margin-bottom: 15px; 
    border-radius: 10px;
  }
  
  .hero-form label {
    margin: 0 5px;
  }
  
  .hero-form button {
    color: #fffdfb;
    background-color: #ed9d3a;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
  } 
  
  .hero-form button:hover {
    background-color: #ea2121;  
  }
  /* HERO STYLES END */

  .section-title {
    font-size: 32px;
    border-bottom: 3px solid;
    color: #ffffff;
    padding-bottom: 20px;
    text-align: center;
    margin: 0 auto 35px auto;
    width: 100%;
  }

  .section-title img  {
    width: 550px;
    align-items: center;
  }

  .me  {
    display: flex;
    flex-wrap: wrap;

  }

  .me p  {
    line-height: 1.7;
    padding-top: 10%;
    color: #ffffff;
    width: 60%;
    margin: 0 auto;
    font-size: 20px;
    text-align: right;
  }
  
  .me img  {
    width: 30%;
    height: auto;
    border-radius: 15px;
    text-shadow: none;
    box-shadow: 5px 10px 10px #000000;
  }

  /* PORTFOLIO */

  .projects  {
    width: 100%;
    margin: 0, auto;
    display: flex;
    flex-wrap: wrap;
  }

  .project  {
    margin: 20px;
    box-shadow: 5px 10px 10px #000000;
    background: #313131;
    color: #e4e4e0;
    flex: 1; 
  }
 
  .project img {
      width: 100%;
  }

  .project-summary  {
    padding: 25px;
    line-height: 1.3;
  }

  .project-summary h3  {
    font-size: 28px;
  }

  .project-summary h4  {
    font-weight: lighter;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .project-summary p {
    font-size: 17px;
  }

  .resumea p  {
    background: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
  }

  /* CONTACT ME */

  .contact-info h3 {
    background-color: #0e0e0f;
    text-align: right;
    padding: 20px;
    color: #e8e8e8;
    font-size: 38px;
    width: 50%;
    border-radius: 15px 0px 0px 0px;
    text-shadow: none;
  }

  .contact-info p  {
    background-color: #0e0e0f;
    text-align: right;
    padding: 15px;
    margin: 20px 0;
    line-height: 1.5;
    font-size: 20px;
    font-style: normal;
    color: #ffffff;
    width: 50%;
    border-radius: 0px 0px 0px 15px;
    text-shadow: none;
  }

  .contact-info a  {
    color: #c52a2a;
  }

  @media screen and (max-width: 575px) {

    .hero-form button {
      width: 100%;
    }

    .hero-form  {
      width: 100%;
    }

    .hero-cta  {
      width: 80%;
    }
  
    .section-title {
      width: 95%;
    }
  
    .intro p {
      width: 100%;
    }
  
    .project {
      flex: 0 100%;
    }

    .contact-info h3 {
      font-size: small;
    }

    .contact-info p  {
      font-size: smaller;
    }

  .me img  {
    width: 100%;
  }
  
    .contact-info {
      text-align: center;
    }
  
    .contact-info > * {
      flex: 0 100%;
    }
    
  }

  @media screen and (max-width: 768px) {
    section {
      padding: 30px 15px;
    }
  
    .step h3 {
      flex: 1 100%;
      text-align: center;
    }
  
    .step-info {
      flex: 2 100%;
      text-align: center;
      justify-content: center;
    }

    .me img  {
      width: 100%;
    }
  
    .step-img {
      flex: 0 32%;
      margin-right: 0;
      margin-top: 15px;
      margin-bottom: 15px;
    }
  
    .step-text {
      flex: 100%;  
    }

    .contact-info h3 {
      font-size: medium;
    }

    .contact-info p  {
      font-size: small;
  
  }

}

  @media screen and (max-width: 980px) {
  
    header  {
      padding-bottom: 0;
      justify-content: center;
      position: relative;
    }
  
    header h1  {
      width: 100%;
      text-align: center;
    }
  
    header nav ul  {
      margin-top: 20px;
      width: 100%;
      justify-content: center;
    }
  
    header nav ul li a  {
      font-size: 20px;
    }
  
    footer h2, footer div  {
      text-align: center;
      width: 100%;
    }
  
    .hero-cta, .hero-form {
      width: 100%;
    }
    
    .hero-cta {
      text-align: center;
    }
  
    .section-title {
      width: 80%;
    }
    
    .project {
      flex: 0 70%;
    }
  
  
  }