
  body {
    margin: 0 auto;
    display: grid;
    background: linear-gradient(135deg,  #6f00fc 0%,#fc7900 50%,#fcc700 100%);
    height: 100vh;
  }

  p {
    width: 420px;
    height: 120px;
    display: grid;
    text-align: center;
    position: absolute;
    top: -52%;
    left: 15%;
    margin-bottom: 5px;
    font-family: 'Bangers', cursive;
    font-size: 55pt;
    color: rgb(48, 4, 247);
    text-shadow: 3px 5px 3px white;
  
  }
  h2 {
    font-family: 'Bangers', cursive;
    font-size: 37pt;
    display: inline-block;
    color: white;
    text-shadow: 3px 5px 3px rgb(43, 2, 249);
    position: absolute;
    text-align: center;
    top: -21%;
    right: 8%;
    width: 500px;
    height: 50px;
    
   }

   h1 {
     font-family: Arial, Helvetica, sans-serif;
     font-size: 11pt;
      color: rgb(48, 4, 247);
      display: grid;
      position: absolute;
      top: 102%;
      margin: auto;
      align-items: center;
   }
  
  .match-game {
    width: 570px;
    height: 450px;
    background: linear-gradient(135deg,  #6f00fc 25%,#fc7900 50%,#fcc700 100%);
    margin: auto;
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-grid;
    grid-template-columns: repeat(5, auto);
    perspective: 1000px;
  }

  #startGame {
    background: #282A3A;
    color: #FFF;
    width: 90px;
    height: 65px;
    display: grid;
    text-align: center;
    position: absolute;
    padding: 7px;
    top: 100%;
    right: 63%;
    margin-top: 60px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Bangers', cursive;
    font-size: 18pt;
 }

 #resetGame {
  background: #282A3A;
  color: #FFF;
  width: 90px;
  height: 65px;
  display: grid;
  text-align: center;
  position: absolute;
  padding-top: 13px;
  top: 100%;
  right: 22%;
  margin-top: 60px;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Bangers', cursive;
  font-size: 22pt;
 }
  
  .match-card {
    width: 80px;
    height: 80px;
    position: relative;
    transform: scale(1);
    transform-style: preserve-3d;
    transition: transform .2s;
    box-shadow: 1px 1px 1px rgba(0,0,0,.3);
    margin: 10px;
  }
  
  .match-card:active {
    transform: scale(0.97);
    transition: transform .2s;
  }
  
  .match-card.flip {
    transform: rotateY(180deg);
  }
  
  .front-side,
  .back-side {
    width: 100%;
    height: 100%;
    padding: 5px;
    position: absolute;
    border-radius: 10px;
    background: #f3f5f2;
    backface-visibility: hidden;
  }
  
  .front-side {
    transform: rotateY(180deg);
  }

