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

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

body {
    font-size: 15px;
    font-family: Outfit, sans-serif;
    line-height: 1.5;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items:center;
}

.container {
    width: 1440px;
    height: 90vh;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 400px) {
    .container {
        width: 375px;
        height: 667px;
    }
}

.card {
    width: 322px;
    height: 500px;
    padding: 16px;
    background-color: hsl(0, 0%, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 26px;
    gap: 16px;
    padding-bottom: 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 26px;
    gap: 16px;
    padding-bottom: 0px;
}


p.title {
    font-weight: 700;
    font-size: 22px;
    color: hsl(218, 44%, 22%);
}

p.content {
    color: hsl(220, 15%, 55%);
    padding: 0px 16px;
}


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

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