@import url("./about.css");
@import url("./blog.css");
@import url("./aboutBlogMedia.css");
@import url("./indexMedia.css");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/* main page layout start */
#main { 
	display: grid;
	grid-template-areas: 
    "header header "
    "article aside"
    "footer footer";
	grid-template-rows: 600px auto 10%;
	grid-template-columns: 1fr 18%;
	gap: 2em;
    transition: 0.1s ease-in;
    
}
header {
	grid-area: header;
}
article {
	background-color: #f4f4f4;
	grid-area: article; 
    /* i am displaing content in column  */
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 10px;
}

aside {
	background: rgb(199,111,0);
	grid-area: aside; 
}

footer {
	background: #000000;
	grid-area: footer;
    color: #ffff;
    text-align: center;
    padding: 20px;
}



/* header styling start  */

header{
    background-image: url("../images/img1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border: none;

}
nav{
    background-color: rgba(244, 244, 244,0.7);
    height: 80px;
    margin: 0;
    width:100%;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow:0px 1px 1px 1px rgba(105, 105, 105,0.2);
    z-index: 1000;
}
.container{
    width: 80%;
    margin: 0 auto;
}
.navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.navigation a:hover{
    color: rgb(255, 255, 255);
}
.logo{
    font-size: 30px;
    
}

ul{
    display: flex;
    list-style: none;
   
}
li{
    padding: 1rem;
    font-size: 22px;
    font-weight: 600;
}
a{
    text-decoration: none;
    /* color: rgb(199,111,0); */
    color: rgb(0, 0, 0);;
}
.sec{
    color: rgb(199,111,0);
}
.showcase{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f4f4f4;
    display: inline-block;
    background-color: rgba(199,111,0, 0.6);
    font-size: 30px;
    font-weight: 300;
    text-align: center;
   
}
.showcase h2{
    padding: 22px;
   
}

/* styling my content section */


.min-post{
   display: flex;
   height: 300px;
   margin: 20px;
   position: relative;
   background-color: #ffff;
   box-shadow: 5px 5px 15px 5px rgba(38, 37, 37, 0.133);
   transition: 1s ease-in;
}
.min-post:hover{
    transition: 0.3s ease-in;
    transform: scale(0.99);
    cursor: pointer;
}
.content{
    flex: 1;
    /* padding: 10px; */
    margin: 20px; 
    font-size: 18px;
    font-weight: 300;
}
.content-image{
    flex: 1;
    padding: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
 
}
.post1{
    background-image: url("../images/img1.jpg");
    background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
}
.post2{
    background-image: url("../images/img2.jpg");
}
.post3{
    background-image: url("../images/img3.jpg");
  
}
.post4{
    background-image: url("../images/img4.jpg");
  
}
.post5{
    background-image: url("../images/img5.jpg");
    
}
.post6{
    background-image: url("../images/img6.jpg");
    
}
.content-image img{
   
    width: 100%;
    height: auto;
    display: block;
    /* padding: 10px; */
}




/* footer styling */

.foot{
    
    font-size: 22px;
    text-align: center;
    
}
.title{
    font-weight: 400;
    text-transform: capitalize;
}
.writter{
    font-size: 12px;
    font-weight: 700;
    text-transform: lowercase;
    /* text-decoration: underline; */
    margin: 3px 0;
}
.content a{
    display: inline-block;
    background-color:rgb(199,111,0);
    margin-top: 25px;
    font-size: 18px;
    color: #ffff;
    padding: 7px;
    border-radius: 2px;
    font-weight: 400;
    box-shadow:3px 3px 3px 1px rgba(105, 105, 105,0.3);

}
.content h3{
    color: #6666;
}
.content p{
    font-weight: 300;
    color: #111111;
}
aside{
    height: auto;
}
aside .min-post{
    height: 100px;
}
aside .min-post h1{
    color: #000000;
    font-size: 16px;
    font-weight: small;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

u, mark {
    display: inline;
}

