

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    background-color: #E8E9EB;
    font-family: 'Open-Sans', sans-serif;
}



/******************************/
/******   Hero Section  ******/
/******************************/

.hero-wrapper {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: top;
    height: 80vh;
    /** Using a linear gradient to create opacity **/
    background-image: linear-gradient(rgba(224, 223, 214, 0.45), rgba(224, 223, 214, 0.45)), url(/images/Hero/at\ computer.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-logo {
    position: relative;
    height: 150px;
    margin-top: 30px;
    margin-left: 30px;
}

.hero-menu {
    text-align: right;
    height: 70px;
    line-height: 70px;
}

.hero-menu label {
    color: #e8e9eb;
    margin: 30px 40px 0 0;
    font-size: 26px;
    line-height: 70px;
    display: none;
}

#toggle {
    display: none;
}

.nav-menu {
    margin: 20px 30px 0 0;
}

.nav-menu a {
    clear: right;
    color: #e8e9eb;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 10px;
    font-size:1.2em;
    line-height: 70px;
}

.nav-menu a:hover {
    color: #fff;
    transition: 0.3 ease-out;
}


.hero-message {
    color: #323638;
    position: absolute;
    align-self: flex-end;
    margin-left: 50px;
    margin-right: auto;
    margin-bottom: 100px;
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    border: 10px solid #404f64;
    padding: 5px;
    max-width: 500px;
}


/******   Hero Media Queries   *****/

@media screen and (max-width: 960px){
     /** Hamburger Menu Should Go Here **/
     .hero-menu label {
        margin: 0 40px 0 0;
        display: block;
        cursor: pointer;
        
        width: 26px;
        float: right;
    }

    .nav-menu {
        text-align: center;
        width: 50%;
        display: none;
    }

    .nav-menu a {
        display: block;
        margin: auto;
        text-align: right;
    }

    #toggle:checked + .nav-menu {
        display: block;
    }


    .hero-message {
        margin-right: auto;
        margin-bottom: 50px;
        padding: 3px;
        max-width: 400px;
        font-size: 25px;
    }
}


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

    .hero-wrapper {
        height: 70vh;
    }

    

    .hero-logo {
        width: 30rem;
        height: 9rem;
    }
}

@media screen and (max-width: 660px){
    
    .hero-menu label {
        margin: 0 40px 0 0;
        display: block;
        cursor: pointer;
        
        width: 26px;
        float: right;
    }

    .nav-menu {
        text-align: center;
        width: 50%;
        display: none;
    }

    .nav-menu a {
        display: block;
        margin: auto;
        text-align: right;
    }

    #toggle:checked + .nav-menu {
        display: block;
    }
    
    .hero-wrapper {
        height: 60vh;
    }

    .hero-message {
        border: 7px solid #404f64;
        margin-right: auto;
        max-width: 300px;
        font-size: 20px;
        align-items: center;
    }

    .hero-logo {
        width: 23rem;
        height: 8rem;
    }

}

@media screen and (min-width: 470px) and (max-width: 527px) {
    .hero-logo {
        width: 16rem;
        height: 6rem;
    }
}

@media screen and (max-width: 470px){
    
    .hero-menu label {
        margin: 20px 40px 0 0;
        display: block;
        cursor: pointer;
        
        width: 20px;
        /*float: right;*/
    }

    .nav-menu {
        width: 25%;
        display: none;
    }

    .nav-menu a {
        display: block;
        margin: auto;
        text-align: right;
        
    }

    #toggle:checked + .nav-menu {
        display: block;
        
    }
    
    .hero-wrapper {
        height: 70vh;
    }

    .hero-logo {
        width: 16rem;
        height: 6rem;
    }

    hero-message {
        align-items: center;
        font-size: 16px;
        border: 7px solid #404f64;
        max-width: 260px;
    }
}

@media screen and (min-width: 375px) and (max-width: 417px) {
    .hero-logo {
        width: 10rem;
        height: 3.5rem;
    }
}

@media screen and (max-width: 375px){
    
    .hero-menu label {
        margin: 30px 40px 0 0;
        display: block;
        cursor: pointer;
        
        width: 20px;
        float: right;
    }

    .nav-menu {
        width: 25%;
        display: none;
    }

    .nav-menu a {
        display: block;
        margin: auto;
        text-align: right;
        
    }

    #toggle:checked + .nav-menu {
        display: block;
        
    }
    
    .hero-wrapper {
        height: 70vh;
    }

    .hero-logo {
        width: 10rem;
        height: 3.5rem;
    }

    hero-message {
        align-items: center;
        font-size: 16px;
        border: 7px solid #404f64;
        max-width: 260px;
        margin-left: 25px;
    }
}


/******************************/
/******   About Section ******/
/******************************/

.about-wrapper {
    
    background-color: #404f64;
    color: #e0dfd6;
    margin-top: -20px;
    padding: 10px;
    
}

.about-card {
    
    width: 90%;
    border: 3px solid #e0dfd6;
    text-align: center;
    margin: 5rem auto;
    padding: 10px;
    max-width: 1000px;
}


.about-title {
    font-family: 'Roboto', Open+Sans; 
    font-size: 3rem;
    text-transform: uppercase;
}

.about-desc {
    font-size: 1.3rem;
    margin: 3rem 5rem;
}

/******   About Media Queries   *****/

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

}

@media screen and (max-width: 660px){
    .about-title {
        font-size: 2rem;
    }
    
    .about-desc {
        font-size: 1.2em;
        margin: 1em 1em;
    }
}

@media screen and (max-width: 375px){
    .about-desc {
        font-size: 1em;
        margin: .5rem .5rem;
    }
}

/******************************/
/******   Skills Section  *****/
/******************************/

.skills-wrapper {
    background-color: #e0dfd6;
    color: #404f64;
    margin-top: -20px;
    padding: 10px;
}

.skills-card {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    width: 90%;
    border: 3px solid #404f64;
    text-align: center;
    margin: 5em auto;
    padding: 10px;
    max-width: 1000px;
}

.skills-title {
    font-family: 'Roboto', Open+Sans;
    font-size: 3rem;
    text-transform: uppercase;
}

.skills-desc {
    font-size: 1.3rem;
    margin: 3rem 5rem;
}

.html-icon, .css-icon, .js-icon {
    width: 100px;
    height: 100px;
    margin: 50px;
    border: 10px solid #404f64;
    border-radius: 50%;
    padding: 20px;
}

/******   Skills Media Queries   *****/

@media screen and (max-width: 730px){
    .skills-title {
        font-size: 2.5rem;
        margin: auto;
    }
    
    .skills-desc {
        font-size: 1.1em;
        margin: 2rem 2rem;
    }

    .html-icon, .css-icon, .js-icon {
        width: 85px;
        height: 85px;
        margin: 45px;
        border: 10px solid #404f64;
        border-radius: 50%;
        padding: 15px;
    }
}

@media screen and (max-width: 660px){
    .skills-title {
        font-size: 2.3rem;
        margin: auto;
    }
    
    .skills-desc {
        font-size: 1em;
        margin: .5rem .5rem;
    }

    .html-icon, .css-icon, .js-icon {
        width: 75px;
        height: 75px;
        margin: 35px;
        border: 10px solid #404f64;
        border-radius: 50%;
        padding: 15px;
    }
}

@media screen and (max-width: 375px){
    .skills-title {
        font-size: 2rem;
        margin: auto;
    }
    
    .skills-desc {
        font-size: 1em;
        margin: .5rem .5rem;
    }

    .html-icon, .css-icon, .js-icon {
        width: 50px;
        height: 50px;
        margin: 25px;
        border: 10px solid #404f64;
        border-radius: 50%;
        padding: 10px;
    }
}

/******************************/
/****** Projects Section  *****/
/******************************/


/******   Projects Media Queries   *****/



/******************************/
/******  Contact Section  *****/
/******************************/

.contact-wrapper {
    background-color: #404f64;
    color: #e0dfd6;
    margin-top: -20px;
    padding: 10px;
    
}

.contact-form {
    width: 90%;
    border: 3px solid #e0dfd6;
    text-align: center;
    margin: 5rem auto;
    padding: 10px;
    max-width: 1000px;
}

.contact-title {
    font-family: 'Roboto', Open-Sans;
    font-size: 3rem;
    text-transform: uppercase;
}

.form-box {
    margin-bottom: 1.3rem;
}

label {
    display: inline-block;
    width: 100px;
    text-align: left;
}

.field {
    padding: 0.2rem 0;
    font-size: 18px;
    /*font-size: 1.2rem;*/
    border-radius: 4px;
    width: 300px;
}

textarea {
    font-family: 'Open-Sans', sans-serif;
    font-size: 18px;
}

.text-label * {
    vertical-align: middle;
}

.form-instructions {
    font-size: 1.3rem;
    margin: 1em 5em;
}

#btnSend {
    background-color: #e0dfd6;
    width: 100px;
    height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    font-size: 1rem;
}

#btnSend:hover {
    cursor: pointer;
    background-color: #e8e9eb;
    transition: all 0.5s ease-out;
}

/******   Contact Media Queries   *****/

@media screen and (max-width: 730px){
    .form-instructions {
        margin: auto;
    }

    #btnSend {
        background-color: #e0dfd6;
        width: 80px;
        height: 30px;
        border-radius: 4px;
        outline: none;
        border: none;
        font-size: 1rem;
        margin-top: 20px;
    }
}

@media screen and (max-width: 471px){
    .form-items {
        flex: flexbox;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contact-title {
        font-size: 1.9em;
    }

    label {
        display: block;
        width: 50px;
        margin-left: 3.3em;
        text-align: left;
    }
}

@media screen and (max-width: 375px){
    .form-items {
        flex: flexbox;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .contact-title {
        font-size: 1.7em;
    }

    label {
        display: block;
        width: 50px;
        margin-left: 3.7em;
        text-align: left;
    }

    .field {
        padding: 0.2rem 0;
        font-size: 1.2rem;
        border-radius: 4px;
        width: 200px;
    }

    .form-instructions {
        margin: auto;
    }

    #btnSend {
        background-color: #e0dfd6;
        width: 80px;
        height: 30px;
        border-radius: 4px;
        outline: none;
        border: none;
        font-size: 1rem;
        margin-top: 20px;
    }

    
}

/******************************/
/******   Footer Section  *****/
/******************************/

footer {
    background-color: #e0dfd6;
    width: 100%;  
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 300px;
    
}

.footer-logo {
    height: 7rem;
    padding-right: 3rem;
    
}

.vcard {
    margin-top: 3rem;
    padding-left: 3rem;
    font-size: 1.0rem;
    font-family: 'Montserrat', Open sans;
    font-style: normal;
    font-weight: bold;
    color: #323638;
}

.vcard .fn {
    color: #db9614;
    font-size: 1.2rem;
}

hr {
    align-self: flex-end;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: 2px;
    background-color: #323638;
    margin-bottom: 3em; 
}


/******   Footer Media Queries   *****/

@media screen and (max-width: 730px){
    hr {
        display: none;
    }

    .footer-logo .vcard {
        height: 5rem;
        
    }

    .vcard {
        font-size: 0.8rem;
        padding: 0;
        margin-top: 0;
    }
}

@media screen and (max-width: 660px){
    .footer-logo {
        align-items: center;
        
    }

    .vcard {
        align-items: center;
        font-size: 0.6rem;
        padding: 0;
        margin-top: 0;
    }
}

@media screen and (max-width: 375px) {
    .footer-logo {
        align-items: center;
        width: 20rem;
        height: 6rem;

    }

    .vcard {
        align-items: center;
        font-size: 0.5rem;
        padding: 0;
        margin-top: 0;
    }
}


/*********

Extra small devices (phones, 600px and lower)

Small devices (portrait tablets adn large phones, 600px and up)

Medium devices (landscape tablets, 768px and up)

Large devices (laptops/desktops, 992px and up)

Extra large devices (large laptops and desktops, 1200px and up)


List media queries from larger to smaller

@media screen and (max-width: ){
...{

}

}

***********/

