.is-inknut {
    font-family: 'Inknut Antiqua', serif;
}

.is-roboto {
    font-family: 'Roboto', sans-serif;
}

.container-box {
    position: relative;
    width: 100%;
  }

  .image-box {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
  }
  
  .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%)
  }
  
  .container-box:hover .image-box {
    opacity: 0.3;
  }
  
  .container-box:hover .middle {
    opacity: 1;
  }
  
  .text-box {
    background-color: #3273dc;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
  }

  .text-box > a:link {
      text-decoration: none;
      color: white;
  }

  .text-box > a:visited {
    text-decoration: none;
    color: white;
}

.text-box > a:hover {
    text-decoration: underline;
    color: white;
}

.text-box > a:active {
    text-decoration: none;
    color: white;
}

.img-circle {
    border-radius: 2%;
}

.add-border {
    border: solid black 1px;
}

.top-pad-25 {
    padding-top: 25px;
}