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

:root {
    --slate-300: #d5e1ef;
    --slate-500: #68778d;
    --slate-900: #1f314f;

    --box-shadow-primary: 0px 8px 20px 5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--slate-300);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-bold {
    font-size: 1.375rem;
    line-height: 120%;
    letter-spacing: 0;
    font-weight: 700;
    color: var(--slate-900);
}

.text-regular {
    font-size: 1rem;
    line-height: 140%;
    letter-spacing: 0.2px;
    font-weight: 400;
    color: var(--slate-500);
}

.card {
    width: 20rem;
    height: 31.25rem;
    background-color: white;
    border-radius: 1.563rem;
    box-shadow: var(--box-shadow-primary);
}

.card img {
    border-radius: 0.625rem;
    margin: 1rem 1rem 1.5rem 1rem;
}

.text-container {
    width: 80%;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.text-container p {
    margin-top: 1rem;
}