.adminstration {
  background-image: url("../assets/images/historybackground.png");
  background-color: #bb9242;
}
.container-overlay {
    position: relative;
    width: 100%;
    /* border: 2px  solid #830606!important; */
    /* max-width: 300px; */
  }
  
  .img-prjct {
    display: block;
    width: 240px;
    height: 240px;
    /* width: 100%; */
    /* height: auto; */
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    /* background: rgb(0, 0, 0); */
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: 0.5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
  } 
  
  .container-overlay:hover .overlay {
    opacity: 1;
  }
  .small-font{
      font-size: small;
  }