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

.card {
    max-width: 310px;
    width: 90%;
    background-color: hsl(0, 0%, 100%);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    text-align: center;
  }
  img{
    width:100%;
    border-radius: 1rem;
  }  

  @media (max-width: 768px){
    .card{
        max-width: 280px;
    }
    .img{
        border-radius: 0.5rem;
    }
  }

  @media (max-width: 480px) {
    .card {
        max-width: 90%;
        padding: 0.8rem;
    }

    img {
        border-radius: 0.25rem;
    }
}