@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none; 
    color: hsl(218, 44%, 22%);
}

section {
    display: grid;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: grid;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 400px;
    border-radius: 20px;
}

.card {
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 20px;
    margin: 20px 0 0 0;

}

.card h1 {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    padding: 13px 24px;

}

.card p {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 0 25px;
    line-height: 1.5;
}

.container img {
    width: 100%;
    border-radius: 20px;
    padding: 10px;
}


.attribution {
        font-size: 11px;
        text-align: center;
      }
      .attribution a {
        color: hsl(228, 45%, 44%);
      }