:root{
    --Dark-Grayish-Blue: hsl(217, 19%, 35%);
    --Desaturated-Blue: hsl(214, 17%, 51%);
    --Grayish-Blue: hsl(212, 23%, 69%);
    --Light-Grayish-Blue: hsl(210, 46%, 95%);
    --font-500: 500;
    --font-700: 700;
}

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

body{
    background-color: var(--Light-Grayish-Blue);
}
main{
    width: 90%;
    max-width: 600px;
    margin: auto;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;   
    /* border-radius: 10px; */
}
.image__container{
    background-color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
}
.card__image{
    width: 100%;
   height: 210px;
   border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.card__container{
    background-color: white;
    margin-top: 0; 
    padding: 1em 2em;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.card__head{
    padding: .8em 0;
    color: var(--Dark-Grayish-Blue);
    font-weight: var(--font-700);
}
.card__desc{
    color: var(--Desaturated-Blue);
    font-weight: var(--font-500);  
    font-size: 14px; 
    line-height: 20px;
    /* margin-bottom: 20px; */

}
.card__Passport{
    width: 20%;
    max-width: 40px ;
    border-radius: 50%;  
}
.share__container,
.card__details__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-top: 15px;
}
.card__name{
    color: var(--Dark-Grayish-Blue);
    font-weight: var(--font-700);
}
.card__date{
    color: var(--Desaturated-Blue);
    font-weight: var(--font-500);
}
.share__button{
    border: 0;
    border-radius: 50%;
    padding: .7em;
}
.share__small{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--Dark-Grayish-Blue);
    padding: 1em 1.5em;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: none; 
}
.icons{
    display: flex;
    gap: 20px;
}
.share{
    color: var(--Desaturated-Blue);
    font-weight: var(--font-500);
    letter-spacing: .5ch;
}



@media (min-width: 768px) {
    main{
        display: flex;
    }

    .image__container{
        width: 40%;
        border-top-left-radius: 10px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 10px
    }

    .card__image{
    height: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px
    }

    .card__container{
        width: 60%;
    }

    .card__container{
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 10px;
        border-top-right-radius: 10px;
    }

    .share__large{
        position: absolute;
        top: 50%;
        left: 60%;
        /* display: flex; */
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        background-color: var(--Dark-Grayish-Blue);
        padding:.8rem 2rem;
       border-radius: 10px;
        display: none; 
    }

    .share__large .share__button{
        display: none;
    }

    .ontop{
    display: block;
    }
}