
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    padding: 0 16px;
}

header {
    padding: 16px 0;
}

nav {
    width: 70%; 
    background-color: #CC0B0B0F;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 16px 24px;
    margin: 0 auto;
}


.home_parent {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home_sib {
    font-family: 'Source Serif 4';
    font-size: 16px;
    font-weight: 500;
}

.data {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
}

.body {
    padding: 40px 16px;
    gap: 32px;
}

.body_child1 {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
}

.explore {
    font-family: 'Libre Franklin';
    font-size: 100px;
    font-weight: 800;
}

.img1 {
    max-width: 90%;
    min-width: 40%;
    border-radius: 10px;
}

.body_child2 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 80px;
    margin-left: 70px;
}

.img_div {
    /* text-align: center; */
    margin-bottom: 16px;
}

.imgs {
    width: 420px;
    height: auto;
    border-radius: 4px;

}

.img_des {
    font-family: 'Source Serif 4';
    font-size: 18px;
    font-weight: 400;
    margin-top: 8px;
}

.img_sub {
    font-family: 'Source Serif 4';
    font-size: 16px;
    font-weight: 400;
    color: #00000099;
}

.body_child3 {
    padding: 32px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* align-items: center; */
    /* text-align: center; */
    gap: 16px;
}

.impact {
    font-family: 'Libre Franklin';
    font-weight: 800;
    font-size: 24px;
    padding-left: 60px;
}

.info {
    height: 320px;
    width: 651px;
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info_box {
    width: 300px;
    height: 50px;
    border-top: 1px solid #00000029;
    /* text-align: center; */
}

.info_des {
    font-family: 'Libre Franklin';
    font-weight: 800;
    font-size: 36px;
    margin-top: 50px;
}

.info_sub {
    font-family: 'Source Serif 4';
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.body_child4 {
    padding: 48px 0;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio {
    font-family: 'Libre Franklin';
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    max-width: 40%;
}

footer {
    padding: 32px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.mark {
    font-family: 'Libre Franklin';
    font-weight: 500;
    font-size: 20px;
}

.contact {
    border-radius: 4px;
    border: 1.5px solid #00000029;
    padding: 8px 16px;
}

@media (max-width: 768px) {
    .explore {
        font-size: 40px;
    }
    .img1 {
        /* margin-left: 40px; */
    }
    .data {
        font-size: 24px;
    }

    .info_des {
        font-size: 28px;
        margin-top: 10px;
    }

    .bio {
        font-size: 20px;
        padding: 0 16px;
    }

    nav {
        flex-direction: column;
    }

    .home_parent {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    nav {
        flex-direction: column;
        gap: 16px;
    }

    .home_parent {
        flex-wrap: wrap;
        justify-content: center;
    }

    .body_child2 {
        margin-left: 0;
        justify-content: center;
    }

    .imgs {
        width: 100%;
        max-width: 300px;
    }

    .info {
        width: 100%;
        justify-content: space-around;
    }

    .info_box {
        width: 45%;
        text-align: center;
    }

    .bio {
        max-width: 90%;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .explore {
        font-size: 35px;
    }

    .img1 {
        max-width: 80%;
    }

    .imgs {
        max-width: 250px;
    }

    .body_child2 {
        gap: 12px;
    }

    .info_box {
        width: 100%;
    }

    .info {
        flex-direction: column;
        align-items: center;
    }

    .bio {
        font-size: 18px;
        padding: 0 16px;
    }

    footer {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 0;
    }

    .data {
        font-size: 18px;
    }

    .home_sib {
        font-size: 14px;
    }

    .img1 {
        max-width: 90%;
    }

    .imgs {
        max-width: 200px;
    }

    .bio {
        font-size: 16px;
    }

    footer {
        font-size: 14px;
    }
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


.home_sib, .data {
    transition: color 0.3s ease, transform 0.3s ease;
}

.home_sib:hover, .data:hover {
    color: #CC0000;
    transform: scale(1.1);
}


.imgs {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.imgs:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}


.explore {
    animation: fadeIn 1s ease-in-out;
}


.info_box {
    animation: popIn 0.6s ease-in-out;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.info_box:hover {
    transform: scale(1.05);
    background-color: #f9f9f9;
}


.bio {
    animation: fadeIn 1.5s ease-in-out;
}

.contact {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact:hover {
    background-color: #00000029;
    transform: scale(1.1);
}




