* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit', Arial;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-container{
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: min(80%, 18rem);
    background-color: hsl(0, 0%, 100%);
    padding: 1rem;
    border-radius: 1rem;
}

.card-container div img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.card-container div h2 {
    margin-bottom: 1.4rem;
    color: hsl(218, 44%, 22%);
    font-size: 1.4rem;
    text-align: center;
}

.card-container div p {
    text-align: center;
    line-height: 1.8rem;
    color: hsl(216, 15%, 48%);
    font-size: 1rem;
    margin-bottom: 1.4rem;
}

.attribution {
    position: absolute;
    bottom: 2%;
}