@import url('https://fonts.googleapis.com/css2?family=Fredoka&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&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');


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

body{
    font-family: "Outfit", sans-serif;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card{
    background-color: hsl(0, 0%, 100%);
    max-width: 320px;
    border-radius: 1.25rem;
    text-align: center;
    padding: 1rem;
}

.card-image{
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.card-title{
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    margin-bottom: 1rem;
}

.card-text{
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: hsl(207, 4%, 53%);
    line-height: 1.4;
}

