
 /* Montserrat Font */
 .font-montserrat {
  font-family: 'Concert One', cursive;;
 }

 /* Disables Selecting and Dragging */
 .noselect {
     -webkit-touch-callout: none;
     -webkit-user-select: none;
     -khtml-user-select: none;
     -webkit-user-drag: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     user-drag: none;
 }

 .WebContainer{
  width:100%;
  min-width:1000px;
  height:auto;
}

 /* CSS Animations */

 /* Hover Grow */
 .hvr-grow {
   display: inline-block;
   vertical-align: middle;
   -webkit-transform: perspective(1px) translateZ(0);
   transform: perspective(1px) translateZ(0);
   box-shadow: 0 0 1px rgba(0, 0, 0, 0);
   -webkit-transition-duration: 0.3s;
   transition-duration: 0.3s;
   -webkit-transition-property: transform;
   transition-property: transform;
 }
 .hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
   -webkit-transform: scale(1.1);
   transform: scale(1.1);
 }
 
 .container-bg {
  background: rgb(14, 13, 13);;
}
