@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.about-content-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    color: #333;
    font-size: 1.5rem;
    text-align: center;
    padding: 0 20px;
    margin-left: 100px;
    margin-top: 10vh;
    margin-right: 100px;
    margin-bottom: 10vh;
    animation: fadeIn 1s;
}

.about-content-main img {
    width: 300px;
    height: auto;
    border-radius: 50%;
    margin-right: 50px;
}

.about-content-main p {
    margin-top: 20px;
    font-size: 1.5rem;
}

.about-gallery {
    display: flex;
    max-width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 10px auto;
    animation: fadeIn 1s;
}

.about-gallery img {
    width: 500px;
    max-width: 95%;
    object-fit: cover;
    object-position: bottom;
    margin: 15px;
    border-radius: 15px;
    border: solid 10px #534025;
}

@media screen and (max-width: 1080px) {
    .about-content-main {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 5vh;
    }

    .about-content-main p {
        margin-top: 5vh;
    }

    .about-content-main img {
        margin: 5vh 5vh 5vh 5vh;
    }
}