*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(253, 242, 220);
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.image-illustration{
    margin-top: 5px;
}
.image-illustration img{
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    object-fit: cover;
    width: 300px;
    height: 300px;
}
.info{
    width: 400px;
    background-color: rgb(255, 255, 255);
    height: 300px;
    padding: 5% 3% 5% 3%;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info p:first-child{
    font-size: 24px;
    font-weight: bold;
}
.appleton{
    border-radius: 50%;
}
.info-details{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.info-person{
    display: flex;
    gap: 20px;
}
.name{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.name p:first-child{
    font-size: 16px;
}
.share{
    background-color: rgb(216, 211, 211);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
}
.share-toggle{
    background: rgb(59, 59, 59);
    color: white;
}
.social-share{
    display: flex;
    gap: 20px;
    background: rgb(59, 59, 59);
    padding: 20px 40px;
    border-radius: 10px;
    color: white;
    position: absolute;
    left: 63%;
    top: 50%;
    z-index: 9999;
    display: none;
}
.social-share p{
    margin-right: 10px;
    opacity: 0.7;
    font-weight: 700;
}
.socials{
    width: 100%;
    display: flex;
    gap: 20px;
}
.show-share{
    display: flex;
}
.mobile-share{
    display: none;
}
@media screen and (max-width:768px) {
    .container{
        display: flex;
        flex-direction: column;
        gap: 0;
        height: 100%;
        justify-content: center;
        align-items: center;
        position: relative;
}
.info{
    width:80%;
    background-color: rgb(255, 255, 255);
    padding: 8% 10% 2% 10%;
    display: flex;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    flex-direction: column;
    gap: 20px;
    border: none;
    height: 100%;
}
.info-details{
    margin-top: 20px;
}
.info p:first-child{
    font-size: 18px;
}
.image-illustration img{
    width: 80%;
    object-fit: cover;
    vertical-align: bottom;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    box-shadow: 2px 2px 2px wheat;
    
}
.image-illustration{
    width: 80%;
}

.social-share{
    background: rgb(59, 59, 59);
    padding: 20px 40px;
    border-radius: 10px;
    color: white;
    left: 10%;
    top: 95%;
    z-index: 9999;
    display: none;
    position: absolute;
    width: 80%;
}
.move-up{
    display: flex;
}
.mobile-share{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.show-share{
    display: flex;
}
.show-details{
    display: none;   
}
}
@media (min-width:320px) and (max-width:375px) {
    .social-share{
        transform: translateY(40%);
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 0;
    }
    .socials{
        gap: 15px;
    }
}