/* Imports */

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

/* Reset */

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

/* Variables */

:root {
    --primary: #1F314F;
    --secondary: #68778D;
    --background: #D5E1EF;
    --font: "Outfit", sans-serif;
}

/* Layout */

body {
    font-family: var(--font);
    background-color: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

/* Card */

.card {
    background-color: #fff;
    max-width: 20rem;
    text-align: center;
    padding: 1rem;
    border-radius: 1.25rem;
    box-shadow: 0 25px 25px 0 hsla(0, 0%, 0%, 0.1);
}

.card-image {
    max-width: 100%;
    height: auto;
    border-radius: .625rem;
}

.card-title {
    font-size: 1.375rem;
    color: var(--primary);
}

.card-text {
    font-size: .9375rem;
    color: var(--secondary);
    margin-top: 1rem;
}

.text-group {
    padding: 1rem;
}

/* Attribution */

.attribution {
    font-size: .875rem;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}