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


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Figtree", serif;
    font-size: 16px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    min-width: 375px;
    background-color: hsl(47, 88%, 63%);
}

.article {
    border-radius: 12px;
}

.card {
    width: 350px;
    display: flex;
    flex-direction: column;
    border-style: solid;
    border-width: 2px;
    border-color: black;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 5px 5px 0 1px black;
    background-color: white;
}

.card h2 {
    background-color: hsl(47, 88%, 63%);
    width: 6rem;
    text-align: center;
    padding: .5rem;
    border-radius: .4rem;
    margin: 1rem 0;
    font-weight: 800;
    font-size: 1.1rem;
}

h5 {
    font-weight: 500;
    margin: 0;
    font-size: .9rem;
}

h1 {
    font-weight: 800;
    font-size: 1.5rem;
    margin: 1rem 0 0 0;
}

p {
    margin: 1rem 0;
    color: hsl(0, 0%, 42%);
    
}

.profile {
    display: flex;
    text-align: center;
    align-items: center;
}

.profile img {
    width: 2.5rem;
    margin-right: 1rem;
    padding: .5rem 0;
}