*, *::before, *::after
{
    box-sizing: border-box;
}
:root {
    font-family: sans-serif;
    scroll-behavior: smooth;
    font-size: 1rem;
    line-height: 1.6;
}
body
{
    margin: 0;
    margin-inline: 38rem;
    margin-block: 5rem;
}
.card
{
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 .2rem oklch(0 0 0/ .2), 0 0 2rem oklch(0 0 0/ .1);
    border-radius: 5%;
    img
    {
        border-top-left-radius: 5%;
        border-top-right-radius: 5%;
        order: -1;
    }

    .content
    {
        margin: 1rem;

    }
}
.highlight
{
    font-weight: bold;
    font-size: 2rem;
}
button
{
    display: flex;
    padding: .65rem 1.2rem;

    text-decoration: none;
    background-color: oklch(0 0.0271 307);
    color: oklch(0.8676 0 307);

    border-radius: 5%;
}