@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    justify-items: center;
}

.container {
    width: 21.5rem;
    max-height: fit-content;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
    background-color: hsl(0, 0%, 100%);
    border-radius: 25px;
    box-shadow: .5rem .5rem .5rem rgba(0, 0, 0, 0.11);
}

.image img {
    margin: 20px 0;
    max-width: 90%;
    border-radius: 15px;
}

.heading {
    color: hsl(218, 44%, 22%);
    font-size: 1.5rem;
    margin: 0.2rem;
    font-weight: 700;
    text-align: none;
}

.text {
    color: hsl(220, 15%, 55%);
    font-weight: 400;
    margin: 1rem 2rem;
    margin-bottom: 3rem;
    font-size: 17px;
    text-align: none;
}

footer {
    position: fixed;
    bottom: 0;
    margin-bottom: 1rem;
}

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

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

@media screen and (max-width: 490px) {
    .container {
        width: 20rem;
        min-height: fit-content;
    }

    .heading {
        margin: 0 1.5rem;
    }

    .text {
        margin: 1rem 1.5rem;
        margin-bottom: 3rem;
    }
}