/*styling.css*/
/*Style body by adding background image and set it to cover, add font-family*/
body{
    font-family: Arvo, serif;
    background: url("images/background.jpg") no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}

/*Style brand*/
.logo{
    height: 70px;   
}

/*Style navigation bar*/
.navbar-inverse{
    background: rgba(0,0,0,0.5);   
}

.nav li{
    font-size: 17px;
    margin-right: 35px;
    padding: 10px 0;
    float: left;
}  

.nav li:hover{
    border-bottom: 1px solid #00FFB8; 
    padding-bottom: 9px;
    cursor: pointer;
} 

.jumbotron{
    background-color: transparent;
    color: #f2f0f0;
    text-align: center;
    margin: 0;
    padding: 10px;
    letter-spacing: 2.5px;
}
/*limit the width of the icons section*/
.container{
    max-width: 1000px;   
}
/*Style icons section using bootstrap grid system*/
.bodyimage{
    height: 100px;   
}

.col-md-3{
    text-align: center;
    color: #fff;
}

.icons p{
    font-size: 15px;   
}

.contact{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 100px;
}

.btn{
    background-color: rgba(17, 0, 255, 0.5);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    padding: 10px 70px;
    letter-spacing: 1.3px;
}

 .machine{
    color: white;
}

/*Style footer*/
.footer{
    background-color: rgba(0, 0, 0, 0.5); 
    color: grey;
    font-size: 15px;
    padding: 10px 0;
}
/*use media queries to change icons size in small devices*/
@media (max-width: 768px){
    .bodyimage{
        height: 70px;   
    }
}


