@font-face {
font-weight: 100 900;
src: url("/fonts/Figtree-VariableFont_wght.ttf") format("truetype");
font-family: "Figtree";
}
*,
*::before,
*::after {
box-sizing: border-box;
* {
margin: 0;
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
body {
background-color: #f4d04e;
.container {
padding: 24px;
min-height: 100dvh;
.card {
display: flex;
flex-direction: column;
gap: 24px;
filter: drop-shadow(8px 8px black);
border: 1px black solid;
border-radius: 20px;
background-color: white;
.image {
border-radius: 10px;
max-width: fit-content;
height: fit-content;
overflow: hidden;
img {
width: auto;
height: 200px;
object-fit: cover;
.content {
gap: 12px;
.center {
justify-content: center;
align-items: center;