@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Outfit:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    box-sizing: border-box;
}

body{
    margin: 0;
    background-color: #d6e2f0;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: grid;
    place-content: center;
}

.card{
    margin: 120px 0 100px 0;
    text-align: center;
    width: 380px;
    height: 580px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 10px #c8d3e0;
}

.image img{
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
}

.text h1{
    text-align: center;
    color: #1f3251;
    font-weight: bold;
    font-size: 28px;
}

.text p{
    padding: 0 15px 0 15px;
    text-align: center;
    color: #7b879d;
    font-size: 18px;
}

.attribution{
    height: 5vh;
    font-size: 15px;
    text-align: center;
}

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

.attribution p{
    margin: 0;
    padding: 0;
}