:root {
    --clr-slate-900: #1F214F;
    --clr-slate-500: #68778D;
    --clr-slate-300: #D5E1EF;
    --clr-white: #FFFFFF;
    --clr-shadow: hsl(0, 100, 0);

    --fw-bold: 700;
    --fw-regular: 400;

    --spacing-500: 40px;
    --spacing-300: 24px;
    --spacing-200: 16px;
}

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
}
  
/* 2. Remove default margin */
* {
    margin: 0;
}
  
/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
      interpolate-size: allow-keywords;
    }
}
  
body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
}
  
/* 6. Improve media defaults */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
  
/* 7. Inherit fonts for form controls */
input, button, textarea, select {
    font: inherit;
}
  
/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
  
/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

body {
    font-family: "Outfit", sans-serif;
    background: var(--clr-slate-300);
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background: var(--clr-white);
    padding: var(--spacing-200);
    border-radius: var(--spacing-200);
    text-align: center;
    width: 320px;
    box-shadow: 0 25px 25px 0 var(--clr-shadow);
}

.card__img img {
    border-radius: 12px;
    margin-bottom: var(--spacing-300)
}

.card__title {
    font-weight: var(--fw-bold);
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-bottom: var(--spacing-200);
    color: var(--clr-slate-900);
}

.card__description {
    font-weight: var(--fw-regular);
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    margin-bottom: var(--spacing-500);
    color: var(--clr-slate-500);
}