/* Make the image fully responsive */
:root {
    --darkBlue: #87bdd1;
    --lightBlue: #e5fffe;
    --grey: #555656;
    --white: #FFF;
}

 
  .resena-content {
    background-color: #fafafa;
    min-height: 515px;
    max-width: 500px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--darkBlue);
  }
  
  .resena-content h3 {
    font-weight: bold;
    font-size: 18px;
    color: var(--darkBlue);
    font-family: 'CustomFont', sans-serif;
  }

  .resena-content p {
    font-style: italic;
    font-size: 16px;
    font-family: 'CustomFont', sans-serif;
    color: var(--darkBlue);
  }

  .foto
  {
    width: 120px;
    height: auto;
    border-radius: 20px;
  }
  
  @media screen and (max-width: 800px) {

    .carousel
    {
        justify-content: center;
        display: flex;
    }

    .carousel-inner {
       width: 340px;
    }

    .resena-content {
        background-color: #fafafa;
        height: 700px;
        border-radius: 20px;
        text-align: center;
      }      
  }
  