*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.about{
    display: flex;
    justify-content: space-between;
    height: 90vh;   
    margin-top: 20px;
    /* border: 1px solid red; */
}
marquee img{
    width: 93px;
    height: 93px;
    display: none;
}
.about figure{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about figure img{
    height: 80%;
    /* border: 1px solid red; */
}
.about div:nth-of-type(1){
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about div:nth-of-type(1) div{
    width: 100%;
    height: 200px;
}
.about div:nth-of-type(1) .my-details{
    width: 100%;
    height: 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.about div:nth-of-type(1) .status{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 1px;
    font-size: 16px;
    color: #ff00518f;
}
.about div:nth-of-type(1) .status p{
    color: #ff00518f;
}
.about div:nth-of-type(1) h1{
    margin: 15px 15px 0 0 ;
    text-align: center;
}
.about div:nth-of-type(1) p{
    text-align: center;
    font-size: 16px;
    margin: 15px 15px 15px 15px;
    line-height: 25px;
    letter-spacing: 2px;
}
.line{
    text-align: center;
    width: 108px;
    border-radius: 5px solid #ff004f;
    padding: 3px;
    border-radius: 30px;
    background-color: #ff004f;
    border: 1px solid #ff004f;
}
.education{
    cursor: pointer;
}
.experience{
    cursor: pointer;
}

@media(max-width:700px){
    marquee img{
        display: block;
    }
    .about figure{
        display: none;
    }
    .about div:nth-of-type(1){
        justify-content: flex-start;
        align-items: center;
    }
    .about div:nth-of-type(1) .my-details{
        align-items: center;
        justify-content: center;
    }
    .about{
        height: auto;
    }
}

@media(max-width:500px){
    marquee img{
        display: block;
        width: 70px;
        height: 50px;
        /* margin-top: 42px; */
    }
    .about figure{
        display: none;
    }
    .about div:nth-of-type(1) h1{
        margin: 0;
    }
    .about div:nth-of-type(1) p{
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 20px;
    }
    .about ul li{
        font-size: 14px;
    }
}

@media(max-width:319px){
    marquee img{
        display: none;
    }
}