/* cover */
html,body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto; 
}
.cover_div{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.cover_img{
    width: 50%;
    float: left;
    height: auto;
}
.cover_p{
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translate(-50%,0%);
    font-size: 65px;
    color: white;
    font-family: "Lucida Handwriting", cursive;
}
.cover_logo{
    position: fixed;
    width: 10%;
    height: auto;
    top: 10px;
    left: 5px;
    z-index: 200;
}
.cover_navi{
    width: auto;
    height: auto;
    background-color: #ffffffd1;
    border-radius: 25px;
    border: 1px solid white;
    position: fixed;
    top: 17.5px;
    right: 50px;
    display: flex;
    align-items: center;
    z-index: 200;
}
.cover_navi_p{
    margin: 10px 20px;
    font-weight: 700;
    font-size: 17.5px;
}
.cover_a{
    text-decoration: none;
    color: black;
    font-size: 15px;
}
.cover_a:hover{
    color: #abb8c3;
}



/* family members */
.family_div{
    width: 100%;
    height: auto;
}
.family_p{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 0px;
}
.family_div_div{
    width: 100%;
    height: 150px;
    position: relative;
    z-index: 100;
    border-bottom: 0.5px solid #E4E4E4;
}
.family_img_back{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.family_img_head{
    width: 75px;
    border-radius: 50%;
    position: absolute;
    left: 25px;
    top: 25px;
}
.family_div_div_p{
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    bottom: 5px;
    left: 62.5px;
    transform: translate(-50%,0%);
}



/* memes */
.memes_div_ul_li{
    font-size: 20px;
    font-weight: 700;
}
.memes_div_ul_li_p{
    font-size: 15px;
    font-weight: 500;
    line-height: 50px;
}
.memes_div_ul_li_img{
    width: 225px;
    height: auto;
    border: 0.5px solid black;
    float: right;
}



/* gallery */
.gallery_div_out{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    justify-self: center;
    gap: 24px;
}
.gallery_img{
    width: 200px;
    height: 200px;
    margin: auto;
    border-radius: 10px;
    object-fit: cover;
    object-position: center center;
}
.gallery_viewmore{
    width: 350px;
    height: 40px;
    margin: 30px auto 50px auto;
    border-radius: 20px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}




