@import url(https://fonts.googleapis.com/css?family=Tangerine);
body{
  /*  background-color: azure; */
}
li{
   /*     background-color: chartreuse; */
}

#header{
    position: fixed;
    background-color: white;
    width: 100%;
    height: 80px;
    top: 0px;
    left: 0px;
}

#footer{
    position: fixed;
    background-color: beige;
    width: 100%;
    height: 100px;
    bottom: 0%;
    left: 0px;
}
 .sm{
     align-items: center;
     float: center;
     padding-left: 100px;
 }
.nav{
    float:right;
    font-family:'Arial';
    text-transform: uppercase;
    
}
.nav ul{
        padding: 0;
        margin: 0;
}

.nav ul li{
        float: left;
        list-style:none;
        border: 1px solid #eee;
}

.nav ul li a{
        background-color: black;
        color: white;
        padding: 10px;
        display: block;
        text-decoration: none;
    
}

.nav ul li a:hover{
    background-color: white;
        color: black;
}

#branding{
    width: 200px;
    height: 50px;
    float: left;
    background: url('http://placeimg.com/301/63/tech?t=1669577775302')  no-repeat center center;
    background-size: 200px;
}
#minimenu{
    display: none;
    float: right;
    margin-right: 20px;
    font-size: 36px;
    margin-top: 5px;
    cursor: pointer;
}
.section{
    min-height: 1000px;
    padding-top: 100px;
    overflow:  hidden;
    font-family: 'Tangerine', serif;
    font-size: 48;
    text-shadow: 4px 4px 4px #aaa;
   
}

.section:nth-child(even){
     background-color: beige;
}
.section article{
    background-color: rgba(255,255,255,0.8);
    padding: 15px;
}

#home{
    background-image: url('images/pexels-nate-hovee-5063779.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

#products{
    background-image:  url('./images/pexels-markus-spiske-6502328.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width:680px){
    #home{
        background-color: greenyellow;
    }
     #minimenu{
        display: block !important;
        float: right; 
    }
    .nav{
        display: none;
        width: 100%;
    }
    .nav ul li{
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width:640px){
    #home{
        background-color: red;
    }
}
@media screen and (max-width:480px){
   #home{
        background-color: fuchsia;
    }
}