body {
    font-family: Luckiest Guy;
    background: rgb(39,0,67) no-repeat;
    background: linear-gradient(312deg, rgba(39,0,67,1) 0%, rgb(255, 0, 238) 100%);
    height: 94.9vh;
    width: 100vh;
    /*display: grid;
    grid-template-columns: [first] 10vh [line2] 50px [line3] auto [col4-start] 50px [five] 40px [end];
    grid-template-rows: [first] 100% [row1-end] 100px [third-line] auto [last-line];*/
    /*display: flex;
    flex-direction: column;*/
    /* justify-items: center; */
    /*padding: 3vh 3vh 10vh 10vh;*/
    /*position: relative;*/
}

.container {
    margin-top: 5vh;
    margin-left: 1vh;
    margin-right: 1vh;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    /* flex-direction: row;
    flex-wrap: wrap; */

    /*display: grid;
    grid-template-columns: [card1] 30vh [card2] 30vh [card3] 30vh [card4] 30vh [card5] 30vh [card6] 30vh;
    grid-template-rows: [first] 50% [second] 50%;
    column-gap: 2vh;*/
}

.card {
    width: 30vh;
    height: 30vh;
    padding: 2vh;
}

h1 {
    color: rgb(255, 255, 255);
    font-size: 200%;
    line-height: 0.3;
    animation: pulsate 10s infinite alternate; 
    animation-timing-function: ease-in-out;
    margin-left: 3vh;
    margin-top: 4vh;
    /*margin-bottom: 0;*/
}

#headroom {
    /* display: flex;
    flex-direction: row;*/
    /*justify-content: space-between;*/
    /*padding: 2vh;*/
    margin-left: 0.5vh;
    margin-top: 2vh;
    margin-bottom: 0;
    /* align-items:center;*/
  }

#startgame {
  z-index: 0;
  position: absolute;
  align-self: center;
  justify-self: center;
  margin-top: 20vh;
  margin-bottom: 30vh;
}

#click2start {
  background: rgba(39,0,67,1);
  border: 0px;
  border-radius: 0%;
  font-size:5vh;
  margin-bottom: 10vh;
  width: 75vh;
  height: 30vh;
  flex-direction: row;
  justify-content: space-between;
}

#click2start:hover {
  background: rgb(86, 0, 75);
  font-size: 6vh;
  text-shadow: 0px 0px 8px #fff;
  /* border: 1px solid;
  border-color: #fff; */
}

button {
  font-family: Luckiest Guy;
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, rgba(26, 0, 44) 0%, rgb(105, 0, 180) 100%);
  border-color: #fff;
  border: 1px solid;
  border-radius: 5%;;
  margin-right: 11vh;
  width:fit-content;
  font-size: 100%;
  line-height: 1.5;
  align-items:middle;
  
}
    
#game {
    background: rgb(26, 0, 44) no-repeat;
    background: linear-gradient(135deg, rgba(26, 0, 44) 0%, rgb(105, 0, 180) 100%);
    border: 1.5px solid;
    border-color: #fff;
    border-radius: 5%;;
    position: absolute;
    height: 70vh;
    padding: 5vh;
    margin-left: 2vh;
    margin-right: 2vh;
    margin-top: 8vh;
    align-items: center;  
    cursor: none;  
}

table, td {
    position: relative;
    border-collapse: collapse;
    border: 0px solid;
    border-color: white;
}

td {
    height: 11vh;
    width: 11vh;
}

td:hover {
  
    /*background-color: rgba(255, 255, 255, 0.801);*/
    animation: pulse 0.5s infinite alternate; 
} 

.winyellow {
    animation: pulseYellow 0.5s infinite alternate;
}

.winred {
    animation: pulseRed 0.5s infinite alternate;
}

@keyframes pulsate {
    100% {
      /* Larger blur radius */
      text-shadow:
        0 0 4px rgb(255, 0, 238),
        0 0 11px rgb(255, 97, 244),
        0 0 19px rgb(255, 208, 252),
        0 0 40px #fff,
        0 0 60px #fff;      
    }
    0% {
      /* Smaller blur radius */
      text-shadow:
        0 0 2px rgb(255, 0, 238),
        0 0 4px rgb(255, 97, 244),
        0 0 6px rgb(255, 208, 252),
        0 0 10px #fff,
        0 0 35px #fff;
    }
}

@keyframes pulse {
    100% {
      background-color: #ffffff71;
    }
    0% {
      background-color: #ffffff29;
    }
}

@keyframes pulseYellow {
  100% {
    background-color: #ffffcb;
  }  
  50% {
      background-color: #ffee00;
    }
    0% {
      background-color: #ffff0029;
    }
}

@keyframes pulseRed {
    100% {
    background-color: #ffafaf;
    }  
    50% {
      background-color: #ff0000;
    }
    0% {
      background-color: #ff000029;
    }
}