#fundus{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding: 50px 0;
    background-color: var(--main-color-darkest);
}

#fundus-container{
    text-align: left;
    margin-left: 7%;
    margin-right: 7%;
}


#about-fundus{
    text-align: justify;
    word-break: normal;
    hyphens: auto;
    font-family: "Catamaran", sans-serif;
    color: var(--main-color-lightest);
    padding-bottom: 30px;
    padding-top: 30px;
}

#fundus-holding-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.fundus-image-div{
    width: 55%;
    height: 450px;
    margin-right: 20px;

}

.fundus-image-div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.fundus-text-div{
    width: 30%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 10px;
    font-family: "Catamaran", sans-serif;
    color: var(--main-color-lightest);
    text-align: left;
    hyphens: auto;
}

@media (max-width: 768px){

    .fundus-image-div{
        width: 100%;
        height: 250px;
        margin-right: 0;
        padding-top: 50px;
    }

    .fundus-text-div{
        width: 100%;
    }

}