
/*always remember avoid using element selector unless and untill you want all element on site to have same attribute as defined*/
/* for example body element should always have white background for my project*/

/* To experiment remove classes from the css class defined in stylesheet to see the differemce and*/
/* You can even change color or values to play around and understand how stuff works*/
body{
    background-color: #eee;
    margin: 0;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    overflow-x:hidden;
}
/*below is a example of css grouping*/
header,footer{
    background: #000;
    text-align: center;
    color: #fff;
    padding: 10px;
}
footer{
    padding: 20px;
}
/*================Navigation=============*/
/*===============psuedo class================*/
#nav-bar{
    background-color: black !important;
}
.fa-bars{
    color:#fff;
    font-size:30px !important;
    }
.navbar-brand img{
    height: 100%;
}

nav ul li a{
    color:#ffff00 !important;
}
.navbar-brand{
    padding:5px !important;
}
.navbar{
    border-radius:0 !important;
}
nav ul li a:hover{
	border-bottom:5px solid #fff000;
	
}
/*===============end of psuedo class================*/

/*================ End of Navigation =============*/


.bgwhite{
    background-color:white;
}

.article{
    width: 900px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid red
}
/*=============== psuedo class ================*/
.article:first-of-type{
    border-width: 1px;
    border-style: dotted;
    border-color: red;
}
.article:last-of-type{
    border: 1px dashed red;
}

/*=============== End of psuedo class ================*/
h4{
    color: #c7c7c7;
    margin: 0 0 10px 0;
    
}
h1{
    font-family: monospace;
    margin: 15px 0 0 0
} 

.banner{
    background: url('../img/batmanbanner.jpg');  
    /*since this file is inside css folder we will have to move out of css folder for accessing img Hence we use " .. " so that it moves one level up in folder structure that is batman folder*/
    background-size: cover;
    height: 500px
}
/*about batman page css =====================*/
.about_banner h1,
.banner h1{
    padding-top: 200px;
    color:#fff000;
    margin: 0;
    font-size: 48px;
}
.about_banner p,
.banner p{
    color: #fff000;
    font-size: 18px;
}
.about_banner{
    background: url('https://www.50-best.com/images/batman_wallpapers/cool_batman_drawing.jpg');
    background-size: cover;
    height: 500px   
}
/*about batman page*/

.box{
    
    margin: 20px 15px;
    background: #fff;
    border: 2px solid #fff000 !important;
}
.box2{
    margin:0;
    background:#fff;
    border:2px solid #fff000 !important;
}
.content{
    padding: 0 20px;
}
.width-65{
    width: 65%;
    float: left;
    padding: 0 40px;
}

.width-25{
    width: 25%;
    float: left;
}

.content-container{
    margin: 50px 0;
    overflow: auto;
    
}
.w100{
    width:100%;
}
.quantitytext{
    width:10px;
}
hr{
    border-top :1px solid black !important;
}
.price{
    font-size: 18px;
}