@import url('https://fonts.googleapis.com/css2?family=Lato&family=Poppins:wght@400;500;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    color:black;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}
 
#brand-name{
    color:#E37B49;
}

.profile{
    height:400px;
    width:400px;
    object-fit: contain;
}

footer{
    display:flex;
    justify-content: space-between;
}

#footer-icons>a{
    color:#000;
    font-size: 1.5rem;
}

#topic{
    color:#E37B49;
}

.project-img{
    height:250px;
    width:250px;
    object-fit: contain;
}


#cap{
   height:40px;
   width:40px;
}

.experience{
    background-image: url("../images/Experience\ 2.png");
    background-repeat: no-repeat;
    background-size: contain;
}


@media only screen and (max-width: 800px) {
    #know-me{
        flex-direction: column-reverse;
    }

    .introduction, .edu, .exp, .projects, .cpyrt, .contact{
        flex-direction: column;
        font-size:14px;
    }

    .project-img{
        height:200px;
        width:200px;
    }

  }


  @media only screen and (max-width: 450px) {
    #footer-icons>a{
        font-size: 1rem;
    }
    .cpyrt{
        font-size: 12px;
    }

    .contact-details{
        padding-left:  0rem !important;;

    }
    .contact{
        font-size:12px;
    }

  }


