body{            
    font-family: 'Roboto', san-serif;
  }
  
  .container{    
    height: 115px;
    display: flex;    
    flex-direction: column;     
  }
  
  .arriba {
    width: 100%;      
    background-color: white;
    display: flex;
    justify-content: center;    
  }
  
  .titulo{      
    display: block;
    font-size: 24px;
    color: #fff;
    text-align: center;
    background-color: rgb(63, 62, 62);
    border-bottom: solid 15px #fff; 
    width: 60vw;	
    margin-left: 20vw;
  }

  .foto1{
    display: flex;
    justify-content: center;        
  }

  .foto2 { 
    border-top-left-radius: 50% 50%; 
    border-top-right-radius: 50% 50%; 
    border-bottom-right-radius: 50% 50%; 
    border-bottom-left-radius: 50% 50%;     
  }

  .datos {
    display: flex;
    flex-direction: column;    
    margin-top: 20px;
    width: 60vw;
    margin-left: 20vw;    
  }

  .bandah {
    display: flex;
    flex-direction: row;  
    justify-content:space-between;
  }

  .labeldato{
    align-items: left;
    color:rgb(63, 62, 62);   
    font-size: 24px;
  }

  .dato{
    text-align: right;    
    color: black;
    font-size: 24px;
    font-weight: 600;
    margin-left: 5px;
  }

  .estadobox{
    width: 60vw;    
    background-color: gray;
    height: 50px;
    margin-top: 15px;    
    display: flex;
    flex-direction: row;
    justify-content: space-around;    
    padding-top: 15px;
  }

  .estadolabel{
    color:black;   
    font-size: 24px;    
  }

  .estado{
    align-items: left;
    color: black;
    font-size: 24px;
    font-weight: 600;
    margin-left: 5px;
  }

  .bottombox{
    width: 60vw;    
    background-color: gray;
    min-height: 10px;
    margin-top: 15px;    
    display: flex;    
    margin-left: 20vw;
  }


  /* Media query */
  @media(max-width:768px) {
   
    .titulo{      
      display: block;
      font-size: 24px;
      color: #fff;
      text-align: center;
      background-color: rgb(63, 62, 62);
      border-bottom: solid 15px #fff; 
      width: 90vw;	
      margin-left: 5vw;
    }

    .datos {
      display: flex;
      flex-direction: column;    
      margin-top: 20px;
      width: 90vw;
      margin-left: 5vw;    
    }

    .labeldato{
      align-items: left;
      color:rgb(63, 62, 62);   
      font-size: 18px;
    }
  
    .dato{
      text-align: right;    
      color: black;
      font-size: 18px;
      font-weight: 600;
      margin-left: 5px;
    }
   
    .estadobox{
      width: 90vw;    
      background-color: gray;
      height: 50px;
      margin-top: 15px;    
      display: flex;
      flex-direction: row;
      justify-content: space-around;    
      padding-top: 15px;
    }     

    .estado{
      align-items: left;
      color: black;
      font-size: 18px;
      font-weight: 600;
      margin-left: 5px;
    }

    .estadolabel{
      color:black;   
      font-size: 18px;    
    }

    .bottombox{
      width: 90vw;    
      background-color: gray;
      min-height: 10px;
      margin-top: 15px;    
      display: flex;    
      margin-left: 5vw;
    }
  
  }