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


body {
    background-color:hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
    margin: auto;
    padding: 100px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    background-color: hsl(0, 0%, 100%);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 290px;
    padding: 20px;
    margin: auto;
    margin-top: -10px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    box-shadow: 0 0 50px -30px #888888;
}

img {
    width: 295px;
    height: 290px;
    border-radius: 10px;
    margin-top: -5px;

}

h1 {
    color: hsl(218, 44%, 22%);
    text-align: center;
    font-size: 23px;
    margin: 20px 0 5px;
    width: 270px;
    font-weight: 700;
}

p {
    color: hsl(220, 15%, 55%);
    font-size: 15px;
    text-align: center;
    margin: 10px 0 20px 0;
    width: 240px;
    font-weight: 400;
}

.attribution {
    color: hsl(218, 44%, 22%);
    /* display: none; */
    margin-top: 50px;
}

.attribution a {
    text-decoration: none;
    color: hsl(220, 15%, 55%);
}

.attribution a:hover {
    color: white;
}