
body {
  font-family: 'Verdana', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.67;
  font-size: 1.67em;
  
  background:
    linear-gradient(27deg, #151515 5px, transparent 5px) 0 5px,
    linear-gradient(207deg, #151515 5px, transparent 5px) 10px 0px,
    linear-gradient(27deg, #222 5px, transparent 5px) 0px 10px,
    linear-gradient(207deg, #222 5px, transparent 5px) 10px 5px,
    linear-gradient(90deg, #1b1b1b 10px, transparent 10px),
    linear-gradient(#1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%, transparent 75%, #242424 75%, #242424);
  
  background-color: #131313;
  background-size: 20px 20px;
}

a {
  display: block;
  z-index: 1;
  position: relative
}

a:link {
  text-decoration: none;
}

svg {
  fill: currentcolor;
}

.masterGrid-container {
  display: grid;
  /* grid-template-columns: auto auto auto; */

  /* Single Vertical Grid */
  grid-template-columns: repeat(, 1fr);
  /* padding: 8px; */
}

.masterGrid-item {
  /* background-color: #999; */
  /* border: 2px solid #555; */
  /* padding: 8px; */
  text-align: center;
}

/* Color of SVG Icons */
div.grid-container div.grid-item svg {
  color: #000;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  /* background-color: #2196F3; */
  padding: 10px;
}

.grid-item {
  /* background-color: rgba(255, 255, 255, 0); */
  /* border: 1px solid rgba(0, 0, 0, 0.8); */
  padding: 10px;
  font-size: 30px;
  text-align: center;
}

.internalGrid-container {  
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.internalGrid-item {
  background-color: #333;
  padding: 15px 0px 15px 0px;
  text-align: center;
  height 62px;
  color: #DDD;
}

.internalGrid-item.graphic-area {
  
}

.internalGrid-item.text-area {
  
}

.graydent {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cedce7+0,596a72+100;Grey+3D+%231 */
background: rgb(220,220,220); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(220,220,220,1) 0%, rgba(100,100,100,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(220,220,220,1) 0%,rgba(100,100,100,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(220,220,220,1) 0%,rgba(150,150,150,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cedce7', endColorstr='#596a72',GradientType=0 ); /* IE6-9 */
}

/* Just to see what it looks like to have such a planet view */
.verticalFlip {
  -moz-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  filter: FlipV;
  -ms-filter: "FlipV";
}

.alligator-show-box {
  height: 200px;
  background-size:
    100% 100%;
  background-repeat: no-repeat;
  color: #fff;
  margin: 0px 20px 0px 20px;

  background-image:
   url(https://jaysonash.com/images/BackgroundImage.png);

  background-position:100%;
  position: relative;
}

.rounded-bottom-border {
  -webkit-border-radius: 0px 0px 16px 16px;
  -moz-border-radius: 0px 0px 16px 16px;
  border-radius: 0px 0px 16px 16px;
}

.alligator-show-box .text {
  /* text-align: center; */
  position: absolute;
  width: 100%;
}

.fire {
 color: #000;
 text-shadow:
 0px -2px 4px #fff,
 0px -2px 10px #FF3,
 0px -10px 20px #F90,
 0px -20px 40px #C33;
}


.text.title {
  font-size: 4em;
  bottom: 40px;
}


.text.tagline {
  font-size: 40px;
  bottom: 5px;
}


.internalGrid-item {
  background-color: #333;
  padding: 15px 0px 0px 0px;
  
  text-align: center;
  height 62px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  color: #DDD;
}

.internalGrid-item:nth-child(3) {
  padding: 15px 0px 15px 0px;
  -webkit-border-radius: 0px 0px 16px 16px;
  -moz-border-radius: 0px 0px 16px 16px;
  border-radius: 0px 0px 16px 16px;
}

.jelloEffect {
    animation: 0.9s ease 0s 1 normal both running jello-horizontal;
}

@-webkit-keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
 65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
 100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

