@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body{
font-family: Roboto;
background-color: rgb(202, 225, 246);
}
.main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.main__content {
    margin: 0;
    display: flex;
    justify-content: center;
  }
  
  .content__box {
    /* border: 2px solid black; */
    padding: 10px;
    max-width: 250px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px;
    background-color: white;
  }
  
  .content__image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
  }
  .content__text{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    margin-top: 20px;
  }
  .text__first{
    font-weight: bolder;
  }
  .text__seccond{
    color:grey;
    font-size: small;
  }