/* general styling */

html {
  height: 100%;
  font-size: 10px;
}

body {
  width: 100%;
  height: 100%;
}

#infoSpan {
    position: absolute;
    top: 96%;
    left: 20px;
    display: block;
}
#infoSpan2 {
    position: absolute;
    top: 96%;
    left: 600px;
    display: block;
}
#infoSpan3 {
    position: absolute;
    top: 96%;
    left: 800px;
    display: block;
}

#mainDiv {

    position: absolute;
    top: 40px;
    left: 20px;

    z-index: 100;

  border: 5px solid black;
}

canvas {
  position: absolute;
  top: 40px;
  left: 20px;
  display: block;
  border: 5px solid pink;
}

/* button styling */
#buttonTable {
  position: absolute;
  top: 4px;
  left: 25px;
  z-index: 200;	
  width: 80%;
}
button {
    background-color: #0088cc;
    background-image: linear-gradient(to bottom,  #0088cc 0%,#0055cc 100%); 
    text-shadow: 1px 1px 1px black;  
    text-align: center;
    color: white;
    border: none;
    width: 75px;
    font-size: 1.6rem; 
    line-height: 2rem;
    padding: .5rem; 
    display: block;
    opacity: 0.3;
    
    transition: 1s all;
    -webkit-transition: 1s all;

    position: absolute;
}

button:hover, button:focus {
  box-shadow: inset 1px 1px 2px rgba(0,0,0,0.7);
  opacity: 1;
}

button:active {
  box-shadow: inset 2px 2px 3px rgba(0,0,0,0.7);
}

.info {
    position: absolute;
    font-size: 15px;
    top: 10%;
    left: 5%;
    background-color: #FAE9FA;
    z-index: 400;
    width: 50%;
}

.fly {
  position:fixed;
  font-weight: bold;
  font-size: 20px;
  z-index: 100;
  font-family: "Arial Black";

  color: darkgrey;
  text-shadow:
          -1px -1px 0 #000,
          1px -1px 0 #000,
          -1px 1px 0 #000,
          1px 1px 0 #000;
  width: 30px;
  height: 10px;
}

.ringX {
    border: 5px solid black;
    -webkit-border-radius: 50%;
    height: 80px;
    width: 80px;
    position: absolute;
    left: 40%;
    top: 45%;
    z-index: 5;
    margin: 0 auto;
    -webkit-animation: pulsateX 4s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0;
    box-shadow: 0 0 30px lightPink;
}

@-webkit-keyframes pulsateX {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(13, 13);
        opacity: 0;
    }
}
.gridTable {
    border: 1px solid pink;
    height: 100%;
    width: 100%;

    padding: 1px;

    z-index: 500;
}
.gridTr {
     // border: 1px solid blue;
 }
.gridTd {
    // border: 1px solid green;
    align-content: center;
}
.gridTdDiv {
    // border: 2px solid orange;
    height: 100%;
    width: 100%;
}
.gridTdDivP {
    width: 100%;
    padding: 0;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 1px 1px 1px black;  
}
.gridTdDivInnerDiv {
    border: .5px dotted black;
    width: 50%;
    margin-top: -6px;
    margin-left: 22%;
    height: 30%;
    border-radius: 40px;

    display:flex;
    justify-content:center;
    align-items:center;

    text-shadow: .5px .5px .5px black;  
}
.gridTdInnerDivSpan {
}

