@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&display=swap');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
}

h1 {
    line-height: 1.1;
}

body {
    font-family: "Outfit", sans-serif;
    background-color: hsl(47, 88%, 63%);
}

/*GENERAL*/

.blog-container {
    background-color: white;
    max-width: 23rem;
    padding: 1.5rem;
    margin: 0 1.5rem;
    border-radius: 15px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 1); 
    transition: box-shadow .3s ease;
}

.blog-container > * + * {
    margin-top: 1rem;
}

.blog-container img {
    border-radius: 15px;
}

.blog-container:hover {
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 1);
}

.blog-category {
    display: inline-block;
    color: black;
    font-weight: 800;
    padding: .5rem .8rem;
    background-color: hsl(47, 88%, 63%);
}

.blog-meta {
    color: hsl(0, 0%, 7%);
    font-size: 14px ;
}

.blog-title {
    font-weight: 800;
    color: black;
    font-size: 1.4rem;
    cursor: pointer;
    transition: color .3s ease;
}

.blog-title:hover {
    color: hsl(47, 88%, 63%);
}

.user-name {
    color: hsl(0, 0%, 7%);
    font-size: 15px;
    font-weight: 800;
}

.user-data {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-image {
    width: 3rem;
}

.wrapper {
    display: grid;
    place-items: center;
    min-height: 100dvh;
}

.head {
    background-color: black;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
}

.foot {
    background-color: black;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
}
