@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.home-photos {
    display: flex;
    max-width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 10px auto;
    animation: fadeIn 2.5s;
}

.home-photos div{
    margin-top: 30px;
    margin-bottom: 30px;
}

.home-photos img {
    width: 500px;
    max-width: 95%;
    object-fit: cover;
    object-position: bottom;
    margin: 15px;
    border-radius: 15px;
    border: solid 10px #534025;
}
