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

:root {
    --white: hsl(0, 0%, 100%);
    --light-gray: hsl(212, 45%, 89%);
    --grayish-blue: hsl(220, 15%, 55%);
    --dark-blue: hsl(218, 44%, 22%);
}

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

body {
    height: 100vh;
    background-color: var(--light-gray);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-size: 15px;
    font-family: 'Outfit', 'sans-serif';
}

h1 {
    font-size: 1.3rem;
    font-weight: 700;
}

a {
    text-decoration: none;
}

.card {
    max-width: 300px;
    background-color: var(--white);
    
    padding: 20px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
}

.card > * {
    margin-bottom: 1.25rem;
}

.thumbnail {
    overflow: hidden;
    border-radius: 15px;
}

.thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

.card {
    text-align: center;
}

.card h1 {
    color: var(--dark-blue);
}

.card p {
    color: var(--grayish-blue)
}