body{
    margin: 0;
    padding: 0;
    background-color:#f1f5f9;;
}
h2{
    font-size: 40px;
    color:#0f172a;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
h1{
    font-size: 60px;
    color:#0f172a;
    font-family: 'Poppins', sans-serif;
}
.hero{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.hero img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display:inline-block;
}
header{
    max-width:90%;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main{
    max-width: 90%;
    margin: 50px auto;
}
main .heading{
    width: 100%;
    text-align: center;
}   
p{
    width: 80%;
    font-size: 22px;
    color: #334155;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}
main section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}
.about div{
    width: 380px;
    height: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.226);
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer{
    width: 100%;
    height: 300px;
    background-color: #0f172a;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
}
footer div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer img{
    width: 50px;
    height: 50px;
    margin: 20px;
    display: inline-block;
}
a{
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    margin: 20px;
    display: inline-block;
    transition: 0.5s;
}
a:hover{
    color: #cbd5e1;
    transition: 0.5s;
}