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

:root {
    --white: hsl(212, 45%, 89%);
    --light-grey: hsl(216, 15%, 48%);
    --light-blue: hsl(218, 44%, 22%);
}


body {
    background-color: var(--light-grey);
    font: 15px "Outfit", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 1px);
    flex-direction: column;
    margin: 1.25rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 0.7rem;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.container img {
    margin-bottom: 1rem;
    border-radius: 0.7rem;
}

.container h1 {
    font-size: 11px;
    text-align: center;
    margin-bottom: 1rem;
}

.container p {
    color: black;
    text-align: center;
}

.attribution {
    font-size: 11px;
    text-align: center;
}

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


@media (min-width: 500px) {
    .container {
        width: 400px;;
    }
}