* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat');

body,
h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Montserrat', sans-serif;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    min-height: 630px;
}

p.blog-hash {
    margin-bottom: 0px;
}

h2.blog-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}
.card {
    overflow: hidden;
    box-shadow: 0px 2px 20px #d7dfe2;
    background: white;
    border-radius: 0.5rem;
    position: relative;
    width: 350px;
    margin: 1rem;
    transition: 250ms all ease-in-out;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 40px #d7dfe2;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner-img {
    position: absolute;
    object-fit: cover;
    height: 14rem;
    width: 100%;
}

.category-tag {
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    background: red;
    padding: 0.5rem 1.3rem 0.5rem 1rem;
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
    top: 1rem;
    border-radius: 0 2rem 2rem 0;
}

.popular {
    background: #ef257a;
}

.technology {
    background: #651fff;
}

.psychology {
    background: #e85808;
}

.card-body {
    margin: 15rem 1rem 1rem 1rem;
}

.blog-description {
    color: #616b74;
    font-size: 0.9rem;
}

.card-profile {
    display: flex;
    margin-top: 2rem;
    align-items: center;
}

.profile-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}


.card-profile-info {
    margin-left: 1rem;
}

.profile-name {
    font-size: 1rem;
}

.profile-followers {
    color: #616b74;
    font-size: 0.9rem;
}