*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*navbar*/
.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:rgb(248, 158, 221);
    position: sticky;
    top: 0;
}
.navbar ul{
    display: flex;
    list-style: none;
    margin: 20px 0px;
}
.navbar ul li{
    font-family: century;
    font-size: 1.1rem;
    font-weight: bold;
}
.navbar ul li a{
    text-decoration: none;
    color: rgb(158, 9, 14);
    padding: 10px 40px;
    transition: all .5s ease;
}
.navbar ul li a:hover{
    background-color: aliceblue;
    color: rgb(11, 11, 11);
    box-shadow: 0 0 10px;
}
/*Home section*/
#home{
    display: flex;
    flex-direction: column;
    height: 840px;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: aliceblue;
}
body{
    background-image: url(img\ new.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 2000px;
    background-position: center;
 }  
 .main{
    display: flex;
    flex-direction: column;
    /*border: 1px solid white;*/
    align-items: center;
    position: absolute;
    top: 30%;
    right: 12%;
 } 
 .heding{
    font-family: century;
    font-size: 3rem;
    text-align: center;
    margin: 40px 0px;

 }
 .btn{
    padding: 10px 35px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    outline: none;
    transition: .6s ease ;
    text-decoration: none;
 }
 .btn:hover{
    cursor: pointer;
    background-color: rgb(253, 170, 219);
    color: black;
    box-shadow: 0 0 5px white,0 0 10px white, 0 0 15px white;
    font-weight: bold;
 }
 footer{
   background-color: plum;
   width: 100%;
   padding: 70px 30px 20px;
 }
 .social{
   display: flex;
   justify-content: center;

 }
 .social a{
   text-decoration: none;
   padding: 10px;
   background-color: white;
   margin: 10px;
   border-radius: 50px;
 }
 .social a i{
   font-size: 2em;
   color: black;
   opacity: 0.9;

 }
 .social a:hover{
   background-color: rgb(28, 27, 28);
   transition: 0.5s ease;
 }
 .social a:hover i{
   background-color: rgb(249, 243, 243);
   transition: 0.5s;
 }
 .footernav{
margin: 30px 0;
 }
 .footernav ul{
   display: flex;
   justify-content: center;
 }
 .footernav ul li a{
   color: rgb(240, 78, 78);
   margin: 20px;
   text-decoration: none;
   font-size: 1.3em;
   opacity: 0.7;
   transition: 0.5s;
 }
 .footernav ul li a:hover{
   opacity: 1;
   color: red;
 }
 .continer{
    max-width: 1170px;
    background-color: rgb(250, 134, 227);
    margin: auto;
    border-radius: 15px;
 }
 .row{
    display: flex;
    flex-wrap: wrap;

 }
 ul{
    list-style: none;
 }
 .footers{
   width: 25%;
   padding: 0 15px;
 }
 