@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
    overflow-x: hidden;
}

.container{
    margin: 0px auto;
    max-width: 1160px;
    padding: 0em 1em;
}

.wrapper{
    padding: 3em 0em;
}

.wrapper .info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 5em;
}

.wrapper .info img{
    width: 300px;
}

.wrapper .info h1{
    margin-top: 0.3em;
    font-size: 2.75em;
    font-weight: 900;
    color: rgb(15, 15, 15);
}

.wrapper .info h3{
    color: rgb(158, 158, 158);
    font-weight: 500;
    font-size: 17px;
}

.wrapper .work{
    display: flex;
    justify-content: center;
    margin-top: 5em;
    flex-direction: column;
}

.wrapper .work .row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1em;
    gap: 2em;

}

.wrapper .work .row img{
    width: 100%;
    box-shadow: 0px 12px 60px 0px rgba(0, 0, 0, 0.096);
}


@media only screen and (max-width: 40em) {

    .wrapper .work .row{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    
    }
 }