body {
    background-color: white;
    font-family: "Space Mono";
    justify-items: center;

    align-items: center;
    padding: 5%;
    display: flex;
    flex-direction: column;
}

h2{
    font-size: large;
}

.about {
    margin: 10%;
    height: auto;
}


.contact {
    font-size: 13px;
    margin: 100px;
    justify-items: center;
}

@media screen and (min-width: 600px) {
    .work {
        width: 90%;
        display: grid;
        grid-template-columns: auto auto auto;
        /* grid-template-rows: auto; */
        grid-gap: 20px;
        background-color: #f0f0f0;
        padding: 20px;
        overflow: hidden;
    }
    
    .work-image {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .work img {
        height: 90%;
        width: 100%;
        object-fit: cover;
        display: grid;
        grid-template-rows: auto auto;
    }
    
    
    .work-image h3{
        font-size: 14px;
        font-weight: 100;
    }
    
}

@media screen and (max-width:600px) {
    .work{
        width: 100%;
        overflow: hidden;
        display: grid;
        

    }

    .work-image{
        width: 100%;
        /* height: 10%; */
        /* object-fit: cover; */
    }

    .work img{
        width: 100%;
    }

    .work-image h3{
        font-size: 14px;
        font-weight: 100;
    }
    
}

