*{
    margin: 0;
    padding: 0;
    font-family: "montserrat";
    color: #0b0b0b;
}
html, body{
    height: 100%;
    width: 100%;
    background-color: #fafafa;
    
}
#main{
    height: 100%;
    width: 100%;
}
.header{
    height:fit-content;
    align-content: center;
    justify-items: center;
    padding: 30px 0px;
}
.header h1{
    font-weight: 500;
    font-size: 2.75em;
    margin-bottom: 10px;
    padding: 0 20px;
}
.header h3{
    font-weight: 400;
    padding: 0 20px;
}
.projects{
    height: fit-content;
    width: 100%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}
.p{
    width: 400px;
    height: 300px;
    background-color: #d4d4d4;
    border-radius: 10px;
    border: 1px solid #d4d4d4;
}
.p img{
    height: 75%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-position: 0 0;
}
.p h2{
    margin: 20px;
    font-weight: 500;
}
a{
    text-decoration: none;
}

@media (max-width:680px) {
    .p{
        width: 350px;
        height: 270px;
    }
    .p h2{
        margin: 15px;
    }
}