@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Marcellus&display=swap');


.details{
    margin-top:100px;
    margin-bottom: 100px;
    display:flex;
    justify-content: center;
    align-items: center;
    font-family: 'Marcellus', sans-serif;
}

button{
    border:none;
    background-color: black;
    color: white;
    padding:10px;
    cursor: pointer;
}

.flex-down{
    width:90%;
}

.gallery .small img{
    width:50px;
    height:50px;
    border-radius: 5px;
    margin:5px;
}

.gallery .small{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery{
    display:flex;
    justify-content: flex-start;
    align-items: center;
    margin:  10px;
}

.gallery img{
    width:300px;
    height: 300px;
    object-fit: cover;
}

.flex-down .info{
    display: flex;
    justify-content: space-between;
    width:90%;
}


@media screen and (max-width: 800px){
    .flex-down .info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width:100%;
    }
    .gallery{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .gallery .small{
        flex-direction: row;
        order: 1;
    }
    .gallery img{
        width:100%;
    }
}