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

body {
    height: 100vh;
    background-color: hsl(212, 45%, 89%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    margin: 0;
}

.container {
    background-color: hsl(0, 0%, 100%);
    padding: 1em;
    border-radius: 20px;
    width: 80%;
    box-shadow: rgba(112, 116, 121, 0.2) 0px 8px 24px;
    max-width: 335px;
}

.image > img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.text-content {
    padding: 1em 10px;
}

.title {
    color: hsl(218, 44%, 22%);
}

.text {
    color: hsl(220, 15%, 55%);
}

.attribution {
    position: absolute;
    bottom: 5px;
    font-size: 11px;
}

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