@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: "Lora", serif;
}

.blog-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.headerArea {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 600px;
    z-index: 1;
    background: linear-gradient(13deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.622) 20%, rgba(38, 38, 38, 0));
}

.titleContainer {
    width: 50%;
    font-size: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 600px;
    padding-left: 80px;
    padding-top: 80px;
}

.titleContainer h2 {
    margin: 0;
}

.titleContainer p {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 100;
    color: rgb(199, 199, 199);
}

.authorContainer {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-left: 40px;
}

.authorContainer img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.authorContainer p {
    margin: 0;
    font-size: 12px;
    color: rgb(199, 199, 199);
}

.authorContainer p span {
    color: white;
}

.container {
    padding: 30px 80px;
}

.category-card {
    background-color: hsla(0, 0%, 88%, .2);
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    margin-bottom: 10px;
}