@media screen and (max-width: 1480px) {

    .about-content{
        width: 100%;
        height: 80vh;
        display: flex;
    }
    .about-desc{
        width: 90%;
        background-color: rgb(158, 6, 6);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
    }

    .about-desc p{
        color: white;
        font-size: 1.3rem;
        line-height: 1.2;
        font-weight: bold;
    }
    .bio{
        color: #000000;
        font-size: 1.6rem;
        display: block;
        text-align: center;
        padding: 20px;
        font-weight: bold;

    }
    .about-pic{
        width: 90%;
        height: 100%;
        background-color: #000000;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .about-pic img{
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 5px solid #ffffff;
    
    }
    .iam{
        font-size: 2.5rem;
        font-weight: bolder;
        color: var(--heading);
    }
    .name{
        font-size: 2.5rem;
        font-weight: bolder;
        color: white;
    }
    .about-desc p{
        color: white;
        font-size: 16px;
        font-weight: bold;
    }
    .bio{
        color: #000000;
        font-size: 1.5rem;
        display: block;
        text-align: center;
        padding: 20px;
        font-weight: bold;

    }
    header{
        padding: 10px 100px;
    }
    section {
        padding: 100px 100px;
      }
}
@media screen and (max-width: 900px) {
    .about-content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-pic img{
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 5px solid #ffffff;
    
    }
    .iam{
        font-size: 2rem;
        font-weight: bolder;
        color: var(--heading);
    }
    .name{
        font-size: 2rem;
        font-weight: bolder;
        color: white;
    }
    .fa-bars{
        color:white;
        transform: scale(1);             
        font-size: 2rem;
        z-index: 999;
    }
    .fa-bars:hover{
        color:white;

    }
    .fa-xmark{
        color:white;
        font-size: 3rem;
        z-index: 999;
    }
    .fa-xmark:hover{
        color:white;

    }
    .navigation{
        background-color: rgba(255, 0, 0, 0.999);
        position: absolute;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 50vw;
        flex-direction: column;
        padding: 50px 0 0 0;
    }
  
    .shownav{
        right: 0;
    }
    .navigation a{
        display: block;
        margin: 50px;
        text-align: center;
        font-size: 1.5rem;
        font-weight: 800;
    }
    footer{
        flex-direction: column;
        padding: 20px 0;
    }
    .copyrights span{
        display: inline-block;
        color: var(--heading); 
    }
    .copyrights strong{
        font-size: 1.2em;
        text-transform: uppercase;
    }
    .social-media{
        margin-right: 100px;
    }
    .social-media i{
        padding: 10px;
        font-size: 1.1em;
        font-weight: 500;
        display: block;
    }
    .main h2{
        color: #fff;
        font-size: 2em;
        font-weight: 500;
    
    }
    .main h2 span{
        display: inline-block;
        margin-top: 10px;
        color: var(--heading);
        font-size: 2em;
        font-weight: 600;
    }

}
@media screen and (max-width: 600px) {
    header{
        padding: 10px 10px;
    }
    section {
        padding: 100px 10px;
    }
    footer{
        flex-direction: column;
        padding: 20px 0;
    }
    .copyrights span{
        display: inline-block;
        color: var(--heading); 
    }
    .copyrights strong{
        font-size: 1.2em;
        text-transform: uppercase;
    }
    .social-media{
        margin-right: 100px;
    }
    .social-media i{
        padding: 10px;
        font-size: 1.1em;
        font-weight: 500;
        display: block;
    }
    .about-pic img{
        max-width: 400px;
    }
}