/*Udemy Webpage Portfolio */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1;
}

/* main styles */


/* HEADER STYLES */

header {
    background: #222222;
    color: #ffffff;
    padding: 5px 30px;
    /*  padding: 20px 30px; */
}

/* logo nest inside header */

header #page-header {
    color: white;
    text-decoration: none;
    width: 49%;
    display: inline-block
}

header img {
    width: 50px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

header h2 {
    font-size: 16px;
}

/* MAIN NAVIGATION */

header #main-navigation {
    width: 49%;
    display: inline-block;
    text-align: right;
}

header #main-navigation ul {
    list-style: none;
    padding: 0;
}

header #main-navigation ul li {
    display: inline-block;
}

header #main-navigation ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

header #main-navigation ul li a:hover {
    background: #444;
    border-radius: 3px;
    transition: 0.3s ease all;
}

/* footer*/

footer   {
  background: #222;
  color: #777;
  padding: 30px;
  text-align: center;
}
footer img   {
  display: block;
  border-radius: 5px;
  width: 80px;
  margin: 0 auto 10px;
}

/* MAIN CONTENT */

/* HERO SECTION */

.hero {
    min-height: 800px;
    text-align: center;
    background: #555;
    background-image: url('../image/background.jpg');
    background-size: cover;
}

.hero-content {
    color: white;
    padding-top: 130px;
    line-height: 1;
}

.hero-title {
    margin: 0;
    font-size: 100px;
}

.hero-content p {
    font-size: 50px;
    margin-bottom: 0px;
}

/* .hero-content a {
    color: white;
    border: 3px solid white;
    border-radius: 3px;
    padding 15px 30px;
    margin-right: 20px;
    text-decoration: none;
    font-size: 28px;
not sure that this even gets used in his--i think he omitted it
} */

/* SITE SECTION STYLINGS */

.site-section {
    padding-bottom: 10px;
    padding-top: 5px;

}

.section-header {
    text-align: center;
    margin-bottom: 0px;
}


.site-section-inside {
    width: 90%;
    max-width: 1600px;
    margin-left: 150px;
    margin-right: auto;

}

.section-header h2 {
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    color: #777;
}

.site-section-secondary {
    background: #EFEFEF;
}


/*About*/

.about {
    background: #ECF0F1;
    width: 100%;
    padding: 5px 0;
}

/* FEATURE BOXES */

.service-box {
    display: inline-block;
    text-align: center;
    width: 20%;
    padding: 0px 15px;
    line-height: 1;
}

.service-box img {
    width: 80px;
    margin-bottom: 10px;

}

.service-box h5 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: #999;
    text-transform: uppercase;
    font-weight: 300px;
    letter-spacing: 2px;
}

/* TESTIMONIALS */

.testimonial-box {
    display: inline-block;
    width: 27%;
    padding: 0px 30px;
}

.testimonial-content {
    background: #ECF0F1;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.testimonial-author img {
    float: left;
    width: 80px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h5 {
    font-size: 18px;
    margin: 0;
    padding-top: 15px;
}

.testimonial-author span {
    color: #999;
    font-size:14px;
}

/*mobile responsive*/

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

    /* HEADER   */
    header #page-header {
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }
    header #main-navigation {
        width: 100%;
        display: block;
        text-align: center;
    }

/*  HERO  */
    .hero {
        min-height: 300px;
    }
    .hero-content {
        padding-top: 80px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .hero-content a {
        font-size: 14px;
        padding: 10px 15px;
        border-width: 1px;
        background: #FFF;
        color: #333;

    }

/* FEATURE BOXES   */
    .service-box {
        width: 100%;
        display: block;
    }

/* TESTIMONIAL BOXES   */
    .testimonial-box {
        width: 100%;
        display: block;
}
}
