header{
    color:white;
    font-family: Arial, Helvetica, sans-serif;
}
div{
    color: aliceblue;
}
body{
    background-color: rgb(3, 2, 2) ;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    width: 100% ;
    height: 100vh ;
    overflow-x: hidden;

}
footer{
    font-family:Arial, Helvetica, sans-serif;
    text-align: center;
    color: aliceblue;
    margin-top: 30px;
    margin-bottom: 30px;
}
.navlinks li a{
    position: relative;
    font-size: 1.05rem;
    font-weight: 500;
    color:rgb(170, 163, 163);
    transition: 0.4s;
    text-decoration: none;
}
nav{
    width: 100%;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.01) ;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap ;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.logo{
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(183, 15, 15);
    letter-spacing: 1px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(255, 255, 255, 0.00);
    border: none;
    cursor: pointer;
}
.navlinks{
    display: flex;
    list-style: none;
    text-decoration: none;
    gap: 2rem;
}
.navlinks li a:hover{
    color: rgb(183, 15, 15);
    text-shadow: 0 0 10px rgb(183, 15, 15);
}
.btn{
    background-color: rgb(183, 15, 15);
    color: white;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    padding: 12px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: medium;
    box-shadow: 0 0 15px rgb(183, 15, 15);
}
.btn:hover{
    background-color:rgb(204, 30, 30) ;
    box-shadow: 0 0 15px rgb(237, 40, 40);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
}
.home-content h1{
    font-size: 3rem ;
    font-weight: 700;
    line-height: 1.3 ;
    margin-bottom: 0.5rem;
}
.home-content h2{
    font-size: 1.5rem ;
    margin-bottom: 0.8rem ;
    font-weight: 700 ;
}
.home-img img{
    position: relative;
    width: 25vw;
    border-radius: 70%;
    box-shadow: 0 0 15px rgb(73, 4, 4);
    cursor: pointer;
    transition: 0.2s linear;
    margin-left: 50px ;
    transition: transform 0.4s; 
    box-shadow: 0.4s ease;
}
.home-img img:hover{
    font-size: 1.8rem ;
    font-weight: 500 ;
    animation-play-state: running;
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.03);
    box-shadow: 0 15px 25px rgba(247, 3, 3, 0.795);
}
@keyframes animateBg
{
  0%
  {
    background-position: 0%;
  }
  100%
{
  background-position: 40px;
}
}
.home{
    display: flex;
    justify-content: center;
    align-items: center ;
    gap: 8rem;
    background-color: rgb(3, 2, 2);
    font-family: 'poppings', sans-serif;
}
.red{
    color: rgb(131, 0, 0);
}
.paragraph{
    font-size: 18px ;
    color: #d3d3d3;
    line-height: 1.7 ;
    max-width: 500px ;
}
.home-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}
.HTML{
    color: orangered;
}
.CSS{
    color: blue;
}
.jetbrains-mono-regular {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
*{
    font-family: 'JetBrains Mono';
}
.about-title{
  text-align: center;
  font-size: 45px;
  margin: 40px 0 25px 0;
  color: rgb(131, 0, 0);
  font-weight: 700;
}
@media (max-width: 768px){
    .about-title{
        order: 1;
        width:90% ;
        margin: 0 auto;
        text-align: center;
    }
    .home{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width:100% ;
        margin: 0 auto;
        gap: 25px;
        text-align: center;
        width: 100%;
    }
    .home-img{
        width:80%;
        max-width: 350px;
        height: auto;
        display: block;
        order: 2;
        margin: 0 auto;
    }
    h2{
        margin: auto;
    }
  }