@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
    padding: 0px;
    margin: 0px;
    font-family: Figtree;
}

body {
    background-color: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.container {
    background-color: white;
    padding: 20px;
    border: solid 1px black;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    width: 18%;
    min-width: 320px;
    gap: 10px;
    box-shadow: 10px 10px;
}

#tags {
    display: flex;
}

.tags {
    background-color: hsl(47, 88%, 63%);
    padding: 5px 10px;
    font-weight: bolder;
    border-radius: 5px;
}

#blog-cover {
    width: 100%;
}

#info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

p#title {
    font-weight: 800;
    margin: 10px 0px;
    font-size: x-large;
}

p#title:hover {
    color: hsl(47deg 100% 49.48%);
    cursor: pointer;
}

p#content {
    color: hsl(0, 0%, 42%);
}

#author {
    display: flex;
    align-items: center;
    gap: 10px;
}

#author > img {
    width: 50px;
}

#author > p {
    font-weight: 850;
}
