@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EDF2F8;
}

main{
    width: 330px;
    height: 520px;
    background-color: #FFF;    
    border-radius: 10px;
}

.img{
    height: 200px;
    background: url('../assets/images/drawers.jpg') center center no-repeat;
    background-size: cover;
    border-radius: 10px 10px 0 0;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.content{
    padding: 35px 30px 0 30px;
}

.content h2{
    color: #565A66;
    font-size: 1.02em;
    line-height: 24px;
    margin-bottom: 20px;
}

.content > p{
    color: #939AA4;
    font-size: 0.87em;
    margin-bottom: 35px;
    line-height: 20px;
}

.author > img{
    width: 40px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 20px;
}

.author .profile{
    display: inline-block;
    vertical-align: 10px;
}

.profile > p{
    color: #565A66;
    font-weight: bold;
    font-size: 0.8em;
}

.date{
    color: #939AA4;
    font-weight: normal;
}

.btn-share{
    display: inline-block;  
    background-color: #F0F3F8;
    padding: 5px;
    border-radius: 50%;
    vertical-align: 15px;
    cursor: pointer;
    margin-left: 50px;
}

.share{
    width: 330px;
    height: 72px;
    color: #565A66;
    background-color: #48546a;
    border-radius: 0 0 10px 10px;
    padding: 20px 30px;
    position: relative;
    top: -62px;
    display: none;
}

.share span{
    margin-right: 20px;
}

.share > img{
    margin-right: 20px;
    cursor: pointer;
}

.share > img:nth-child(4){
    margin-right: -18px;
}

.share > .btn-share{
    vertical-align: 0;
}