* {
    margin: 0px;
    padding: 0px;
}

:root {
    --darkGrayishBlue: hsl(217, 19%, 35%);
    --desaturatedDarkBlue: hsl(214, 17%, 51%);
    --grayishBlue: hsl(212, 23%, 69%);
    --lightGrayishBlue: hsl(210, 46%, 95%);
}

html, body {
    height: 100dvh;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

body {
    background-color: var(--lightGrayishBlue) !important;
}

main, section {
    height: 100%;
}

h1 {
    font-weight: 700 !important;
    color: var(--darkGrayishBlue) !important;
}

p {
    font-weight: 500 !important;
    color: var(--darkGrayishBlue) !important;
}

.color-darkGrayishBlue {
    color: var(--darkGrayishBlue) !important;
}

.card-container {
    height: auto;
    width: 100%;
    padding: 0px !important;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 20px 30px var(--grayishBlue);
    background-color: white;
}

.img-drawers {
    background-image: url(../images/drawers.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    width: 100%;
    border-radius: 10px 0 0 10px;
}

.img-avatar {
    border-radius: 500px;
    height: auto;
    width: 2.5em;
}

.share-icon {
    fill: white;
    background-color: var( --desaturatedDarkBlue);
    padding: 8px;
    border-radius: 100%;
    height: auto;
    width: auto;
    cursor: pointer;
}

.share-text {
    letter-spacing: 0.7em;
    text-transform: uppercase;
    color: beige;
    font-size: 13px;
}

div.hidden {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.share {
    background-color: var(--darkGrayishBlue);
    position: absolute;
    z-index: 555;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.btnShare {
    z-index: 777;
}

.share-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent; 
    border-right: 10px solid transparent; 
    border-top: 10px solid var(--darkGrayishBlue); 
    position: absolute; 
    left: 53%; 
    transform: translateX(-50%); 
    bottom: -10px; 
}

#shareBox img {
    cursor: pointer;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
}

@media (min-width: 768px) {

    .share {
        width: 250px;
        left: 75%;
        bottom: 35%;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0px 20px 30px var(--grayishBlue);
    }
}


@media (max-width: 768px) {
    .img-drawers {
        height: 250px;
        border-radius: 10px 10px 0 0 ; 
    }

    .share {
        border-radius: 0 0 10px 10px;
        height: 4.5em;
        bottom: 0;
        width: 100%;
    }

    div.no-p {
        bottom: 0px !important;
        padding-bottom: 10px !important;
    }

    .share-arrow {
        display: none;
    }

    footer {
        display: none;
    }
}



