

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body 
{ background-color: black;
  color: white;
      display: grid;

}
h1{
    font-size: 3rem;
     
}
p{
    font-size: 1.35rem;
    line-height: 1.8rem;
}

.containter{
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 20px;
}
.flex {
    display: flex;
    align-items: center;
}

/* navigation bar */

.main-nav{
    margin-top: 20px;
    justify-content: space-between;
    
}
ul{
    list-style: none  ;
    justify-content: end;
    gap: 8px;
}
#cv{
    background-color: yellow;
    border-color: black;
    color: black;
}


/*header section*/

header{
    padding: 50px 20px 0;
    
}

.header-sec{
    justify-content: center;
    gap: 130px;
}

.header-right img{
    width: 200px;
    border-radius: 20px;
    margin-left: 140px;
    margin-bottom: 20px;
}


#yt, #pf, #qd, #tele{
    padding: 5px;
    font-weight: 200;
   

 
}

/* header buttons  and buttons*/
a{
    text-decoration: none;
    border: 1px solid white ;
    border-radius: 10px;
    color: white;
    transition: 0.5s;
    padding: 5px 10px;
    font-size: 20px;
}


#yt a:hover{
    color: black;
    border: none;
    background-color: red;
    border-radius:10px;
    box-shadow: 0px 0px 5px red,
                0px 0px 50px red;
                

}



#pf a:hover{
    color: black;
     border: none;
    background-color: #ff9d5c;
    border-radius:10px;
    box-shadow: 0px 0px 5px #ff9d5c,
                0px 0px 50px #ff9d5c;
                

}


#qd a:hover{
    color: black;
     border: none;
    background-color: #00C0A3;
    border-radius:10px;
    box-shadow: 0px 0px 5px #00C0A3,
                0px 0px 50px #00C0A3;
                

}

#tele a:hover{
    color: black;
     border: none;
    background-color: #0088cc;
    border-radius:10px;
    box-shadow: 0px 0px 5px #0088cc,
                0px 0px 50px #0088cc
                

}


footer{
    text-align: center;
    
}

