
/*GLOBAL SETTINGS */

*{box-sizing: border-box;}

html {
    font-size: 62.5%;
    font-family: 'Roboto', sans-serif;
    background-color: lightgray;
}
body {
  font-size: 1.6rem;
}


p{
  font-family: 'Poppins', sans-serif;
}

  .wrapper, footer {
    width: 100%;
    margin: auto;
    overflow: auto;
  }

  /*nav*/
  header {
    background-color: black;
    padding: 15px;
  }

  nav {
    font-size: 2rem;
  }
  
  nav ul {
    list-style: none;
    display:flex;
    justify-content:space-around;
    padding: 0;
  }
  

  nav ul li a{
    text-decoration:none;
    color:white;
  }

  nav a:hover {
    color: goldenrod;
  }
 
  /*end nav/ */


body {
  margin: 0;
}

.home-hero {
  position:relative;
  width: 100vw;
  height: 100vh;

}

.home-hero img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position:absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.home-hero h1 {
  text-align:center;
  margin:0;
  padding-top: 20%;
  color: white;
  font-size:15rem;
}

  /*footer*/   

  .main-footer {
    
    left:0;
    bottom: 0;
    width: 100%;
    background-color: black;
    padding: 48px 0;
    color: white;
    font-size: 1.5rem;
  }
  
  .main-footer h3 {
    color: white;
  }
  
  .main-footer .title, .about, .social {
   float: left;
    width: 33.33%;
    padding: 0 36px;
  }
  
 
/*PROJECT CARDS */

/*.flex-container {
  display:flex;

}*/

.flex-item {
 
  padding:30px;
  border-radius:10px;
  margin: 15px;

}

.flex-item img {
  width:100%;
}

/* END Project Cards */


/*ABOUT Cards*/

.about-title {
  padding:30px;
}

.about-bio {
  border-radius: 10px;
  padding:30px;

}


/*Contact Form*/

.contact-title{
  font-size:4rem;
  text-align:center;
  padding:20px;

}

.wrapper-form {


   
}

.form-item {
  margin:10px;
  padding:10px;
  width: 60%;

}

.location {
  padding:20px;
}

.address {
  padding:20px;
 
}

.map {
  height: 264px;
  margin:10px;

}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .flex-container {
    display:flex;
  }
  .flex-item {
  width: calc(33% - 30px);
  }
}

 .main-footer, .footer-wrapper {
  display: flex;
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .location, .wrapper-form {
    text-align:center;
  }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .header, .wrapper, .flex-container, .about, .wrapper-form, .disclaimer, .footer-wrapper {
    width: 1000px;
    margin: 0 auto;
  }

  .about-title {
    text-align: center;

  }

  

  .about-bio {
  /*display:flex;*/
  padding: 30px;
  border-radius:10px;
  width: calc(50% - 30px);
  margin:0 auto;
  }

  
}



