@font-face {
    src: url("../assets/fonts/Outfit/Outfit-VariableFont_wght.ttf") format("truetype");
    font-family: "Outfit";
}
:root {
    --white: hsl(0, 0%, 100%);
    
    --slate-300: hsl(212, 45%, 89%);
    --slate-500: hsl(216, 15%, 48%);
    --slate-900: hsl(218, 44%, 22%);

    --font-principal: "Outfit";
}

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}
html {
    box-sizing: border-box;
}
body {
    background-color: var(--slate-300);
    font-family: var(--font-principal);
    font-size: 15px;
}
img {
    display: block;
    max-width: 100%;
}
.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 1rem;
    width: min(90%, 22rem);
    box-shadow: 1rem 1rem 3rem  rgba(128, 128, 128, 0.32);
}
.card-header {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: .5rem;
}
.card-body {
    text-align: center;
    padding: 1rem
}
.title {
    font-size: 1.50rem;
    margin-bottom: 1rem;
}
.description {
    font-size: 1rem;
    color: var(--slate-500)
}