@charset "UTF-8";

@import url(style.css);

@import url(nav.css);

@import url(footer.css);


.about {
    overflow: hidden;
    
}


.about-content {
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 50px; 
    background-color: white;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.253); 
    transition: background-color 0.8s ease; 
}


.about-content img {
    max-width: 90%;
    border-radius: 50%;
    height: auto;
    transition: transform 0.6s ease; 
}


.about-content div {
    flex: 1;
}

.about-description h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.about-description p {
    margin-bottom: 14px;
    line-height: 1.5;
    font-size: 18px; 
}


.reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}


.about-content:hover {
    background-color: rgba(255, 153, 0, 0.884);
    color: white;
}


.about-content img:hover {
    transform: scale(1.1);
}
