@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
*{
    margin:0;
    padding:0;
}
body{
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    background-color: #fff;
    /* min-height:100vh; */
    /* display:flex;
    align-items: center;  */

}
.container{
    max-width: 100%;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; 
    margin:0 auto;
}
.card img {
    width: 100%;
    border-radius: 16px;  
}
.card{
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    background-color: hsl(0, 0%, 100%);
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    margin: 20px;
    height: 430px;
    width: 270px;
}
.card:hover{
    cursor: pointer;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.text{
    padding: 22px 10px;
    
}

.text p{
    color:  hsl(220, 15%, 55%);
}
.text h2{
    color:hsl(218, 44%, 22%);
    padding-bottom: 15px;
}

.header {
    max-width: 400px;
    text-align: center;
    margin: 20px;
  }
  
  .header h1 {
    font-size: 28px;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    padding-bottom: 10px;
  }
  
  .image {
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
  }
  
  .image img {
    max-width: 100%;
    border-radius: 16px;
  }
  
  .header-container {
    display: grid;
    width: 100%;
    justify-content: center;
  }