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

* {
    font-family: "Figtree", system-ui, sans-serif;
    line-height: 150%;
    letter-spacing: 0px;
}

h5 {
    margin: 0;
}

html {
    font-size: clamp(14px, 1vw + 0.5rem, 16px);
    background-color: #F4D04E;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    border: 0;
}

.card {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 20px;
    box-shadow: #111111 8px 8px;
    border: #111111 1px solid;
    width: clamp(279px, 44.5vw, 336px);
    transition: 0.3s ease 0s;
    transition-property: box-shadow;
}

.card:hover {
    box-shadow: #111111 16px 16px;
    transition: 0.3s ease 0s;
}

.card:hover h3 {
    color: #F4D04E;
    transition: 0.3s ease 0s;
}

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

.tag {
    margin-top: 24px;
    margin-bottom: 12px;
    background-color: #F4D04E;
    padding: 4px 12px;
    width: min-content;
    border-radius: 4px;
}

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

.profile > img {
    height: 32px;
    width: 32px;
    margin-right: 12px;
}

.text {
    width: fit-content;
    margin-bottom: 24px;
}

.text > h3 {
    margin: 12px 0px;
    transition: 0.3s ease 0s;
    transition-property: color;
}

.preset1  {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111111;
}

.preset2 {
    font-size: 1rem;
    font-weight: 500;
    color: #6B6B6B;
}

.preset3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111111;
}

.preset3bold {
    font-size: 0.875rem;
    font-weight: 800;
    color: #111111;
}

.attribution {
    margin-top: 10vh;
    font-size: 0.6875rem;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}