:root{
    --VeryDarkGrayishBlue: hsl(217, 19%, 35%);
    --DesaturatedDarkBlue: hsl(214, 17%, 51%);
    --GrayishBlue: hsl(212, 23%, 69%);
    --LightGrayishBlue: hsl(210, 46%, 95%);
    --White:#fff;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--LightGrayishBlue);
    font-family: 'Manrope', sans-serif;
    color: var(--VeryDarkGrayishBlue);
}
.drawers{
    width: 40%;
    height: auto;
    border-radius: 10px 0   0 10px ;
}
#container{
    display: flex;
    width: 60%;
    height: auto;
    background-color: var(--White);
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 9%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 15px;
}
.article{
    width: 100%;
    height: 100%;
    padding: 2rem;
    color: var(--VeryDarkGrayishBlue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.article h1{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.article p{
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}
.author {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
}
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.author-info {
    color: var(--GrayishBlue);
    margin-left: 3em;
}
.author-info p {
    font-weight: 700;
    color: var(--VeryDarkGrayishBlue);
    margin: 0;
}
#share{
    display: block;
    padding: 1rem;
    background-color: var(--GrayishBlue);
    color: var(--White);
    border-radius: 40px;
    cursor: pointer;
    position: relative;
    left:10%;
}
.share-icon{
    filter: brightness(0) invert(1);
}
.fb-icon, .twit-icon, .pint-icon, .value {
    display: none;
}
@media screen and (max-width:430px) {
    #container{
        width: 90%;
        flex-wrap: wrap;
    }
    .drawers{
        width: 100%;
        border-radius:10px 10px 0 0;
    } 
}


    