@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(212, 45%, 89%);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 1.25rem;
}

#container {
    background-color: hsl(0, 0%, 100%);
    padding: 1.25rem;
    border-radius: 0.625rem;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    width: 320px;
}

#container img {
    border-radius: 0.625rem;
    margin-bottom: 1rem;
    max-width: 100%;
}

img {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container h1 {
    color: hsl(218, 44%, 22%);
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

#container span {
    color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    font-size: 15px;
    text-align: center;
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

@media (min-width: 500px) {
    .container {
        width: 400px;
    }
}