*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}
body{
     background-color: #d6e2f0;
}


.grid{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}
  
.child {
    width: 350px;
    height: 525px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

.img {
    width:90%;
    height: 60%;
    margin:0;
    border-radius: 10px;
    padding: 0px;
    margin-top:5%;
 }

 .contentup{
    position: absolute;
    top: 65%;
    width:85%;
    font-weight: 700;
    text-align: center;
    font-size: 25px;
 }

 .content{
    position: absolute;
    top: 80%;
    width:88%;
    font-weight: 400;
    text-align: center;
    font-size: 15px;
    color: #808080;
 }