*{
    margin:0% ;
    padding: 0%;
    box-sizing: border-box;
}
nav{
   
    background: #1b1b1b;
    width: 100%;
    padding: 12px 0;
}
nav .menu{
    max-width: 1250px;
   
    margin: auto;
    display:flex ;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;

}
.menu .logo a {
    text-decoration: none;
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.menu ul{
    display: inline-flex;
}

.menu ul li {
    list-style: none;
    margin: 7px;
}
.menu ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
   
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.menu ul li a:hover {
background: aqua;
color: #000;
}
.img{
    background: url(karan.jpg) no-repeat;
    height: 100vh;
    weight: 100vw;
    background-position: center;
    background-size: cover;
}


.img::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba( 0,0,0,0.4);
}

.center{
    position: absolute;
    top: 59%;
    left: 50%;
    width: 50%;
    height: 25%;
border-radius: 8px;
    transform: translate(-50%,-50%);
  
    padding: 0 29px;
    text-align: center;

}

.center .title{
 font-size: 20px;
 font-weight: 800;
    color: #fff;
    margin-top: 8px;
}

.center .subtitle{
margin-top: 8px;
font-size: 20px;
color: rgb(238, 162, 69);
font-weight: 800;
}

.center .btns{
    margin-top: 20px;
}
.center .btns button{
      width: 170px ;
      height: 35px;
      border: none;
      margin: 0 10px;
      cursor: pointer;
      border: 2px solid #fff;
 
      transition: all 0.3s ease;
      border-radius: 7px;
}

.center .btns button:first-child{
    color: #fff;
    background: none;

}
.center .btns button:first-child:hover{
    background: #fff;
    color: #000;
    
}



