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

:root {
    --white: hsl(0, 0%, 100%);
    --lightblue: hsl(212, 45%, 89%);
    --mediumblue: hsl(216, 15%, 48%);
    --darkblue: hsl(218, 44%, 22%);
}

* {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400, 700;
    font-style: normal;
}

img {
    max-width: 90%;
    height: auto;
    border-radius: 14px;
    padding-top: 15px;
}

body {
    font-size: 15px;
    background-color: var(--lightblue);
}

.wrapper {
    background-color: var(--white);
    display: grid;
    place-items: center;
    border-radius: 14px;
    width: 30%;
    height: auto;
    margin: auto;
}

h2, p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 25px;
}

.attribution {
    padding-top: 40px;
}