/* * {
    box-sizing: border-box;
    margin: 0;
    padding: 0%;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
  } */
  
  /* review container  */
  
  .container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 110px auto;
    background-color: white;
  }
  
  .container1 h1 {
    text-align: center;
    margin: 20px;
  }
  .container1   .qoute p {
    font-size: 11.5px;
  }
  
  /* reviews  */
  
  .container1 .reviews {
    /* background-color: #e6e4e173; */
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    /* box-shadow: 0 0 8px #000; */
  }
  
  /* review box  */
  
  .container1 .box {
    background-color: #eaeaea;
    width: 350px;
    height: 250px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    margin: 20px 0;
    /* border-radius: 10px;
    box-shadow: 0 0 8px #000; */
    border-radius: 34px;
    background: #f3f3f3;
    box-shadow: 15px 15px 34px #d5d5d5, -15px -15px 34px #ebebeb;
  }
  
  .container1  .profile {
    display: flex;
  }
  
  .container1  img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #141414;
  }
  
  .container1 .bio {
    font-size: 0.6em;
    align-self: center;
    margin-left: 20px;
  }
  
  .container1 .bio h3 {
    font-weight: 100;
  }
  
  .container1 .qoute {
    font-size: 0.7em;
    line-height: 1.5;
    border-top: 1px solid #000;
    margin-top: 20px;
    padding: 10px 0;
  }
  
  .container1 button {
    width: 120px;
    margin-top: -10px; /* margin: 20px auto; */
    padding: 5px;
    font-size: 0.8em;
    font-weight: 700;
    background-color: #cecece;
    box-shadow: 0 0 10px 2px #000000d5;
    border: none;
    border-radius: 5px;
  }
  
  .container1 button:hover {
    background-color: #f8f7f7;
  }
  
  /* a clicking effect  */
  
  .container1 button:active {
    box-shadow: 0 0 5px #000;
  }
  
