body{
    margin: 0;
    width: 100%;
    color: #2F2E41;
    font-family: Arial, Helvetica, sans-serif;
}
header{
     background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) ,url("/images/pexels-thisisengineering-3861969.jpg");
     background-repeat: no-repeat;
     background-size: cover;
     height: 100vh;
}
header img{
    width: 400px;
    height: 200px;
}
.about{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 50px;
    height: 700px;
}
.aboutImg img{
    height: 100%;
    width: 100%;
}
.aboutTxt h1{
    font-size: 48px;
}
.aboutTxt p{
    font-size: 24px;
    width: 30vw;
}
.projects{
    padding-bottom: 100px;
    
    background-color: #ffffff;
    opacity: 1;
    background-image: radial-gradient(#FFB6B6 2px, #ffffff 2px);
    background-size: 40px 40px;
    
}
.projectTitle h1{
    padding: 50px;
    font-size: 48px;
}
.projectCards{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.card{
    position: relative;
    background-color: #FDFDFD;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 500px;
    height: 800px;
}
.card img{
    width: 500px;
    height: 450px;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.cardTxt h1{
    padding: 20px;
}
.cardTxt p{
    margin: 20px;
    font-size: 18px;
}
.card button{
    position: absolute;
    bottom: 0;
    
    
    margin: 20px;
    padding: 15px;
    background-color: #2F2E41;
    color: #FDFDFD;
    font-size: 20px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    cursor:pointer;
    text-align: center;
}


/* Meet Team */
.teamMembers{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
}
.teamTitle h1{
    padding: 50px;
    font-size: 48px;
}
.teamImg{
    display: flex;
    justify-content: center
}
.teamImg img{
    margin: auto;
    object-fit: cover;
    object-position: 0px 10%;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.teamTxt{
    text-align: center;
    width: 15vw;
    font-size: 18px;
}
footer{
    margin-top: 100px;
}
footer img{
    width: 100%;
}
footer p{
    text-align: center;
}