body, html{
    margin: 0;
    box-sizing: border-box;
    font-family: 'Figtree' , sans-serif;
    background-color: hsl(47, 88%, 63%);
}

.main-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.card{
    background-color: white;
    height: 450px;
    width: 350px;
    border-radius: 15px;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 1);
}

.card-image{
    width: 310px;
    height: 175px;
    margin-top: 20px;
}

.card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.text-content{
    margin-top: 20px;
    width: 310px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-subject{
    background-color: hsl(47, 88%, 63%);
    width: 70px;
    text-align: center;
    padding: 5px 5px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 5px;
}

.date{
    font-size: 14px;
    font-weight: 500;
}

.header{
    font-size: 22px;
    font-weight: 800;
}

.subtext{
    font-size: 15px;
    color: hsl(0, 0%, 42%);
}

.author{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
}

.author img{
    height: 30px;
}

