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

* {
    font-family: "Outfit";
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: #D5E1EF;
    margin: 0%;
    border: 0;
}

#card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #FFFFFF;
    padding: 16px 16px 40px 16px;
    border-radius: 20px;
}

#card img {
    width: 288px;
    height: 288px;
    border-radius: 10px;
}

#card section {
    width: 256px;
    text-align: center;
    padding: 0px 16px;
}

section h3 {
    color: #1F314F;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0px;
    font-weight: 700;
    margin: 24px 0 16px 0;
}

section p {
    color: #68778D;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    font-weight: 400;
}

.attribution {
    margin-top: 10vh;
    font-size: 11px;
    text-align: center;
}
            
.attribution a {
    color: hsl(228, 45%, 44%);
}