*,
*::after,
*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font: inherit;
}

body{
    font-family: "Sahel";
}

.container{
    width: 100%;
    margin: 20px auto;
    padding: 15px;
}

.photo__wrapper{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.photos{
    width: 100%;
    /* height: 400px; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: -5px 5px 3px 3px rgba(99, 99, 99, 0.227);
}

@media screen and (max-width: 468px) {
    .photo__wrapper{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .photos{
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }
    
}

