@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;
}

.home-photos h1{
    display: flex;
    justify-content: center;
    font-size: 30px;
    margin: 10px;
}

.home-photos p{
    display: flex;
    justify-content: center;
    margin: 10px;
    font-size: 20px;
}

.home-photos a{
    display: flex;
    justify-content: center;
    color: black;
    text-decoration: none;
    font-size: 25px;
    margin: 10px;
    font-weight: 600;
}

.home-photos a:hover{
    color: white;
    text-decoration: none;
}

.children{
    display: flex;
    max-width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 50px auto;
    animation: fadeIn 2.5s;
}

.children a{
    display: flex;
    justify-content: center;
    color: black;
    text-decoration: none;
    font-size: 30px;
    margin: 10px;
}

.children a:hover{
    color: white;
    text-decoration: none;
}


