* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* COLOR */
    --bg-primary: hsl(212, 45%, 89%);
    --bg-secondary: hsl(220, 15%, 55%);
    --bg-dark: hsl(218, 44%, 22%);
    --white: hsl(0, 0%, 100%);
    /* FONTS */
    --font-primary: 'Outfit', sans-serif;
}
html {
    font-size: 62.5%;
}

body {
    background-color: var(--bg-primary);
    font-family: var(--font-primary);
}

.card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30rem;
    padding: 1.6rem;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1.6rem;
}
.card-img {
    width: 100%;
    width: 27rem;
    border-radius: 1.2rem;
    margin-bottom: 2rem;
}
.heading-primary {
    padding-bottom: 2rem;
    color: var(--bg-dark);
    font-weight: 700;
    text-align: center;
}
.paragraph {
    font-weight: 400;
    color: var(--bg-secondary);
    text-align: center;
    padding-bottom: 2rem;
}
