html{
    scroll-behavior: smooth;
}
#video{
    position:fixed;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: none;
}
nav {
    position: fixed;
    left: 2%;
    top: 5%;
    width: 100%;
    display: flex;
    justify-content: center;
    gap:3%;
}
nav a {
color:rgb(252, 252, 250);
background-color: #02434e;
text-decoration:none;
padding-left:2%;
padding-right:2%;
padding:1%;
font-size: 20px;
text-align: center;
border-radius: 10px;
box-shadow: 0 0 20px rgb(21, 223, 250);
}
nav a:hover{
    background-color: #00bcdd;
    color: #0e0000;
    box-shadow: 0 0 10px rgb(240, 238, 238);
    transform: scale(0.80);
}  
section h1{
    color:rgb(240, 238, 238);
    font-size: 34px;
    padding-top: 9%;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;}
section p{
    color:rgb(0, 2, 2);
    line-height: 60px;
    padding-top: 2%;
    padding-bottom:2%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: 'Courier New', Courier, monospace;
    background-color: rgba(255, 255, 255);
    border-radius:5%;
    margin: 8%;
    margin-top: 0%;
    box-shadow: 0 0 20px rgb(4, 248, 236);
}
section span{
    font-size: 18px;
    word-spacing:10px;
     font-weight: 700;}
.intro{
    padding: 5%;
    padding-top: 15%;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.myname{
    color: rgb(255, 255, 255);
    padding-top: 2%;
    font-size: 80px;
    font-family: 'Courier New' bold;
    text-shadow: 4px 4px 5px #00bcdd;
}
.interest{
    color:rgb(255,255,255);
    font-size: 50Px;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 4px 4px 5px #00bcdd;
}
.skills-wrap{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    font-family: sans-serif;
    gap:3%;
}
.skill-item{
    flex-wrap: wrap;
    display:flex;
    border-radius: 10%;
    transition: 0.3s ease;
    margin-top:8%;
}

.skill-item img{
    width: 80px;
    height:80px;
}
.skill-item span{
    color:rgb(17, 14, 17);
    margin-top: 18px;
    font-size: 19px;
    font-family: 'Georgia';
    text-align:center;
}
.skill-item:hover{
    background-color: rgb(255, 255, 255);
    transform: scale(1.05);
    box-shadow: 0 0 12px rgb(4, 248, 236);
} 

.contact{
    display: flex;
    justify-content: center;
    padding: 10%;
    flex-wrap: wrap;
    gap: 10%;
} 
.contact img{
    width: 50px;
    height: 50px;
    flex-direction: column;
    transform:translate(-50%,-50%);
    transition:transform 0.1s ease;
    cursor: pointer;
    }
.contact img:active{
    width:30px;
    height: 30px;
    cursor: pointer ;
    transform:translate(-50%,-50%) scale(0.95) ;  
}

@media screen and (max-width: 768px) {
  video{
    width:100%;
    height:auto  ; 
    position:fixed;
    background-size: cover;
    background-position: center;
    }
    html{
      scroll-behavior: smooth;
  } 
  nav { 
    flex-direction:center; 
    align-items: center; 
    gap: 3px; 
  } 
 
  nav a { 
    font-size: 13px; 
    padding: 8px 10px; 
  } 
 
  .intro { 
    padding-top: 20%; 
  } 
 
  .myname {
    text-shadow: 0.5px 0.5px 1.5px #00bcdd; 
    color:rgb(0, 0, 0);
    margin-top:20%;  
    font-size: 30px; 
  } 
 
  .interest { 
    text-shadow: 0.5px 0.5px 1.5px #00bcdd; 
    color:rgb(0, 0, 0);
    font-size: 20px; 
  } 
 
  section h1 { 
    color: #0e0000;
    margin-top: 10%;
    font-size: 22px; 
  } 
 
  section p { 
    font-size: 13px; 
    padding: 15px; 
    margin: 8px; 
    line-height: 1.6; 
  } 
 
  section span { 
    font-size: 12px; 
    word-spacing: 5px; 
  } 
 
  .sk { 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; 
    font-size: 15px; 
  } 
 
  .skills-wrap { 
    flex-direction:center; 
    gap: 10px; 
  } 
 
  .skill-item img { 
    margin-top: 5%;
    width: 60px; 
    height: 60px;
  } 
  .skill-item span { 
    font-size: 13px; 
 } 
  .contact { 
    margin-top: 1%;
  flex-direction:center; 
    align-items: center;
    gap: 20px; }
  .contact img { 
    margin-left: 2%;
    width: 40px; 
    height: 40px; 
  } 
} 


    
