@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --Slate-300: hsl(212, 45%, 89%);
    --Slate-500: hsl(216, 15%, 48%);
    --Slate-900: hsl(218, 44%, 22%);
}

body {
    height: 95vh;
    background-color: var(--Slate-300);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Outfit", sans-serif;
}

h1 {
    color: var(--Slate-900);
    font-size: 22px;
}

.card {
    background-color: white;
    text-align: center;
    padding: 10px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rrgba(0, 0, 0, 0.103)
}

.card img {
    height: 240px;
    border-radius: 10px;
    padding: 5px;
}

p {
    color: var(--Slate-500);
    font-size: 15px;
}