@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
}
a{
    text-decoration: none;
    color: #f1f1f1;
}
body{
    background-color: #f1f1f1;
}

/*About-Page*/

.about{
    
    margin: 10rem 20rem;
    text-align: center;
}

.about p{
    font-size: 14px;
    color: #333333;

}


.about h4{
    font-size: 20px;
    color: #333333;

}

.the-team{
    display: flex;
    justify-content: center;

    
}
.dev-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.dev-container img{
    width: 120px;
}
.dev-container .dev-name{
    font-weight: 700;
    font-size: 14px;
}

.dev-container .dev-desig{
    font-weight: 500;
    font-size: 13px;
}

