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

* {
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

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

.container {
    background-color: white;
    padding: 1.5rem;
    max-width: 384px;
    border-radius: 20px;
    border: 1px solid rgb(17, 17, 17);
}

.hero {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.category {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    background-color: hsl(47, 88%, 63%);
    max-width: fit-content;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.date {
    color: hsl(0, 0%, 7%);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

h2 {
    color: hsl(0, 0%, 7%);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.description {
    color: hsl(0, 0%, 42%);
    font-size: 0.875rem;
}

.text {
    margin-bottom: 1.5rem;
}

ul {
    display: flex;
    align-items: center;
    list-style-type: none;
}

.author {
    width: 32px;
    height: 32px;
}

.name {
    font-size: 0.875rem;
    margin-left: 0.75rem;
}