:root {
    --card-background: hsl(0, 0%, 100%);
    --background: hsl(212, 45%, 89%);
    --text-2: hsl(220, 15%, 55%);
    --text-1: hsl(218, 44%, 22%);
}

body {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--background);
}

.card {
    background-color: var(--card-background);
    border-radius: 30px;
    max-width: 320px;
    margin-top: 100px;
}

img {
    border-radius: 40px;
    max-height: 280px;
    max-width: 280px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

h1 {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
    font-size: 22px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-1);
}

p {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--text-2);
    padding-bottom: 20px;
}

.attribution {
    margin-top: 50px;
}