.history-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1cm;
    
}

.box {
    display: flex;
    width: 100%;
    margin: 3px;
    /* height: auto; */
    
}
.name-right {
    border: 1px solid #ddd;
    border-right: 4px solid gray;
    padding: 10px;
    border-radius:  5px;
    display: flex; 
    flex-direction: row;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
}

.name-left {
  border: 1px solid #ddd;
  border-left: 4px solid gray;
  padding: 10px;
  border-radius:  5px;
  display: flex; 
  flex-direction: row;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .box {
      flex-direction: column;
      height: 400px;
      min-height: 400px;
  }

  .name-right,
  .name-left {
      border: 1px solid #ddd;
      border-right: none;
      border-left: none;
      padding: 10px;
      border-radius: 5px;
      height: 300px;
  }
}

.time h5 {
    display: flex;
    vertical-align: middle;
    text-transform: uppercase; 
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    /* border: 1px solid #888; */
    width: 60%;
    
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.history-modal p {
    color: #747474;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 25px 0 0;
}
.box-text {
    height: 140px;
}

.box-text p {
    color: #747474;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 25px 0 0;
}

.time {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3px;
}

.person-image {
  display:inline-block;
  text-align:left;
}

.person-image img{
  width: 200px;
  height: auto;
  border-radius: 50%;
}  









  