#earlyLife {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url("../asset/gallery/elbg.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
#elBlur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.2); 
    pointer-events: none;
}
#elHead,
#earlyLifeCon,
#elButton {
    position: relative;
    z-index: 2;
}
#earlyLifeCon{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    gap: 5vw;
}
#elHead{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 10vh;
}
#elHead h3{
    font-size: 1.2rem;
    color: #000001;
    text-align: center;
    border-bottom: 1px solid red;
    letter-spacing: 0.2rem;
}
#elButton{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 20vh;
}
.elcContainer img{
    width: 50%;
    opacity: 100%;
    border-radius: 25px 0 0 25px;
}
.elcContainer h3{
    font-size: 1.5rem;
    padding: 5px;
    opacity: 100%;
}
.elcContainer p{
    font-size: 1rem;
    margin: 0;
    opacity: 100%;
}
.elcContainer {
    background-color: transparent;
    width: 80vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    text-align: center;
    padding: 1vw;
    border-radius: 20px;
    position: relative;
    gap: 1vw;
}

.elcContainer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,254,0.5); 
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
}

.elcContainer img,
.elcContainer h3,
.elcContainer p, .galButton {
    position: relative;
    z-index: 1;
    opacity: 1;
}
.elcText{
    display: flex;
    flex-direction: column;
    justify-content: center;   
    align-items: center;
}
@media (max-width: 600px) {
    .elcContainer {
        flex-direction: column;
        align-items: center;
    }
}