@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700&display=swap');

*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body{
    background-color: hsl(210, 46%, 95%);
    height: 100vh;
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card{
    background-color: white;
    width: 55%;
    height: 40%;
    border-radius: 10px;
    display: flex;
}

.image{
    height: 100%;
    border-radius: 10px 0px 0px 10px;
}

.info-card{
    height: 100%;
    width: 60%;
    background-color: white;
    right: 0%;
    border-radius: 0px 10px 10px 0px;
    margin-left: -70px;
}

.heading{
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 22px;
    padding: 30px 40px 10px 40px;
    color: hsl(217, 19%, 35%);
}

.discription{
    font-family: 'Manrope',sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 0px 40px;
    color: hsl(214, 17%, 51%);
}

.contact{
    width: 100%;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.profile{
    display: flex;
    align-items: center;
}

.profile-img{
    height: 35px;
    border-radius: 50%;
}

.profile-info{
    padding: 0px 10px;
}

.profile-name{
    font-family: 'Manrope',sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: hsl(217, 19%, 35%);
}

.profile-date{
    font-family: 'Manrope',sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: hsl(214, 17%, 51%);
}

.share-img-container {
    background-color: hsl(210, 46%, 95%);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.share {
    height: 15px;
}

.share-popup{
    padding: 10px 30px;
    display: flex;
    right: -10%;
    top: -20px;
    background-color: hsl(217, 19%, 35%);
    position: absolute;
    border-radius: 10px;
    box-shadow: 0px 2px 5px hsl(217, 19%, 35%);
    display: none;
}

.share-text{
    color: hsl(210, 46%, 95%);
    font-family: 'Manrope',sans-serif;
    font-size: 14px;
    font-weight: 200;
    text-transform: uppercase;
    margin-right: 10px;
}

.share-icon{
    margin-right: 10px;
}

@media (max-width: 670px){
    body{
        width: 100%;
        justify-content: start;
        margin-top: 30px;
    }

    .card{
        width: 80%;
        flex-direction: column;
        border-radius: 10px;
        margin: 0%;
    }

    .image{
        border-radius: 10px 10px 0px 0px;
    }

    .info-card{
        width: 100%;
        margin: 0px;
        border-radius: 0px 0px 10px 10px;
    }

    .heading{
        font-size: 16px;
    }

    .discription{
        font-size: 12px;
    }

    .contact{
        padding: 10px 50px;
    }

    .profile-name{
        font-size: 14px;
    }

    .profile-date{
        font-size: 10px;
    }

    .share-img-container{
        padding: 5px;
    }

    .share{
        height: 10px;
    }

    .share-popup{
        width: 100%;
        right: 0%;
        top: 100%;
        border-radius: 0%;
    }
}
