body{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: hsl(210, 46%, 95%);
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    box-sizing: border-box;
    height: 100vh;
}
main{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

#drawers{
    margin: 0;
    padding: 0;
    width: 300px;
    height: 180px;
    border-radius: 15px 15px 0px 0px;
    object-fit: cover;
}
#description{
    margin: 0;
    padding: 20px 20px 0px 20px;
    width: 300px;
    box-sizing: border-box;
    background-color: white;
}
#description h1{
    color: hsl(217, 19%, 35%);
    font-size: 13px;
    font-weight: 700;
}
#description p{
    color: hsl(214, 17%, 51%);
    font-size: 13px;
    font-weight: 500;
}

.avatar{
    width: 300px;
    height: 80px;
    box-sizing: border-box;
    margin: 0;
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 15px 15px;
}
#avatar-img{
    width: 40px;
    border-radius: 50%;
}
#avatar-name{
    font-size: 13px;
    font-weight: 700;
    color: hsl(217, 19%, 35%);
    margin: 0;
    margin-left: 15px;
}
#birth-date{
    margin: 0;
    margin-top: 5px;
    margin-left: 15px;
    color: hsl(214, 17%, 51%);
    font-size: 13px;
    font-weight: 500;
}
.share-button{
    border: none;
    border-radius: 50%;
    padding: 10px;
    margin-left: 30px;
    cursor: pointer;
}

#inactive{
    background-color: white;
}
#active{
    background-color: hsl(217, 19%, 35%);

}
#active .share-button{
    background-color: hsl(214, 17%, 51%);
}
#active h2{
    color: hsl(214, 17%, 51%);
    font-size: 12px;
    font-weight: 500;
    padding-right: 16px;
}
.socials-img{
    width: 20px;
    padding-left: 8px;
    padding-right: 8px;
}

.hidden{
    display: none;
}

@media only screen and (min-width: 800px) {
    body{
        flex-direction: row;
    }
    #drawers{
        height: 260px;
        border-radius: 15px 0px 0px 15px;
    }
    #description{
        height: 180px;
        width: 400px;
        border-radius: 0px 15px 0px 0px;
    }
    .avatar{
        width: 400px;
        height: 80px;
        padding-left: 35px;
        padding-right: 35px;
    }
    .share-button{
        margin-left: 30px;
    }
    .avatar{
        border-radius: 0px 0px 15px 0px;
    }
    .tooltip{
        width: 180px;
        height: 40px;
        box-sizing: border-box;
        border-radius: 10px;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 260px;
        right: 100px;
    }
}

