 /***********************************
             GLOBAL STYLES
   ***********************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body, .container {
    font-family: "Nunito", sans-serif;
    width: 100%;
    height: 100vh;
    background: #000217;
    color: white;
  }
  
  h1 {
      font-size: 3em;
      text-align: center;
      margin-bottom: 2rem;
  }
  
  /***********************************
             HEADER STYLES
   ***********************************/
  
  header {
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
    display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;  /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  }
   
  /* Navigation Styles */
  
  nav ul {
    list-style-type: none;
  }
  
  nav a {
    text-decoration: none;
    color: #EA80FC;
    cursor: pointer;
  }
  
  nav a:hover {
    color: white;
  }
  
  .navbar {
    align-self: flex-start;
    width: 100%;
    position: fixed;
    background-color: #000217;
    z-index: 9999;
    border-bottom: 1px solid #EA80FC;
  }
  
  .nav-list {
    justify-content: space-around;
    align-content: center;
    display: flex;
    display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;  /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    padding: 10px;
  }
  
  /* Landing Area */

  .landing {
    text-align: center;
  }
  
  .landing-text h1 {
      font-family: 'Carter One', cursive;
      margin-bottom: 1px;
  }
  
  .landing-text span {
      color: #EA80FC;
      text-shadow: 0 5px #053695;
  
  }
  
  /***********************************
               HERO STYLES
   ***********************************/
  
  .hero {
    padding: 50px;
    margin: 50px auto;
    text-align: center;
  }


  .shout {
    color: #EA80FC;;
    font-size: 1.5rem;
    margin-top: 50px;
  }

  /*

  #about {
    padding-top: 50px;
    margin-top: -50px;
}
*/

  /***********************************
             SKILLS STYLES
   ***********************************/
  .skill-container {
     width: 100%;
     margin: 30px auto;
  }

  .skill-img {
    margin: 20px 10px 10px 10px;
    text-align: center;
  }

  .skill-img img {
      width: 100%;
      border-radius: 10px;
      padding: 10px;
      background: #ddd;
  }

  .skillbox {
      max-width: 400px;
      margin: 20px auto;
      padding: 5px;
      border: 1px solid #EA80FC;
      border-radius: 10px;
  }

  .skillbox h3 {
    margin: 0 0 10px 10px;
  }
 
  .skillbox span {
      display: inline-block;
      margin: 3px;
      background-color: #6C757D;
  }

  .skills {
    padding: 5px;
}

.skill-desc {
  margin: 20px 10px;
  text-align: center;
  padding: 5px;
}
  
/***********************************
          PROJECTS STYLES
***********************************/
  .projects {
    margin: 0 auto;
    padding-top: 50px; 
  }
  
  .project-item {
      /*background-color: #20262E;*/
      border: 1px solid #EA80FC;
      border-radius: 10px;
      width: 100%;
      margin: 20px auto;
  }

  .project-desc {
      margin: 10px 10px 0 25px;
  }

  .project-desc p {
      margin-top: 15px;
  }

  .projects h3{
      text-align: center;
      padding: 10px 0;
      font-size: 1.4rem;
  }
  
  .projects span {
      display: inline-block;
      margin: 2px;
      background-color: #28A4D9;;
      border-radius: 5px;
  }
  
  .projects img {
    width: 90%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    display: block;
    margin: 0 auto;
  }

  .projects button {
      margin: 15px 1px 15px 5px;
      background: #000217;
      color: white;
      border: 1px solid #EA80FC;
      border-radius: .3rem;
      padding: .5rem 1rem;
      font-weight: 600;
  }

  .projects button:hover {
      background: #EA80FC;
  }

/***********************************
          CONTACT STYLES
***********************************/
  .contact {
    margin: 100px auto;
    padding: 50px;
}

.contact label, input, textarea {
    display: block;
    width: 70%;
    margin: 0 auto;
}

.contact label {
    color: #EA80FC;
    margin-bottom: 5px;
    margin-top: 15px;
}

.contact input, textarea {
    background: #000217;
    color: white;
}

.contact input[type=text],[type=email] {
    height: 30px;
    font-size: 100%;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #EA80FC; 
}

.contact input[type=submit]{
    border: 1px solid #EA80FC; 
    height: 50px;
    margin-top: 20px;
    color:  #EA80FC;
}

.contact input[type=submit]:hover {
    cursor: pointer;
    background: #EA80FC;
    color: white;
}

.contact textarea {
    border: 1px solid #EA80FC;
    height: 300px;
    padding: 10px 0 0 10px;
}

/***********************************
          FOOTER STYLES
***********************************/
  footer {
    border-top: 1px solid #EA80FC;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-items: center;
    align-items: center;
    grid-template-areas: 
    "socials"
    "contacts"
    "copyright";
  }

  .socials {
    grid-area: socials;
  }

  .copyright {
    grid-area: copyright;
    font-size: .8em;
  }

  .contacts {
    grid-area: contacts;
    padding: 5px;
  }

  .contacts a {
    color: #EA80FC;
    text-decoration: none;
  }

  .contacts a:hover {
    color: white;
  }

  .fab {
    color: #EA80FC;
    font-size: 40px;
    padding: 5px;
  }

/***********************************
           MEDIA QUERIES
***********************************/
@media only screen and (min-width: 767px){

   .landing-text p {
     text-align: left;
   }
    .blurb {
      line-height: 2rem;
      font-size: 1.5rem;
    }

    .skill-list {
      display: flex;
      flex-wrap: wrap;
    }
   
    .project-item {
        width: 90%;
        max-width: 750px;
    }

    .project-desc, .projects h3 {
        margin: 15px 20px 20px 40px;
    }

    .projects h3 {
        text-align: left;
    }

    .projects button {
        margin: 10px 10px 0 0;
    }

    footer {
      grid-template-columns: repeat(3, 1fr);
      grid-template-areas: 
      "socials copyright contacts";
    }

    .socials, .copyright, .contacts {
      align-self: center;
    }
}
