@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');

.cell{
    width:75px;
    height: 75px;
    border: 3px solid rgb(38, 36, 155);
    border-radius: 7px;
    background-color: rgb(227, 227, 243);
    color: rgb(60, 60, 146);
    box-shadow: 0px 0px 18px #969599;
    line-height: 75px;
    font-size: 50px;
    cursor: pointer;
}

#gameContainer{
    font-family: "Permanent Marker", cursive;
    text-align: center;
}

#statusText{
   color:rgb(151, 74, 74);
   font-family: "Georgia", serif;
   font-size:40px;
}


#cellContainer{
    display: grid;
    grid-template-columns: repeat(3,auto);
    width: 225px;
    margin: 100px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color:  #c9dbec;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  .titleStyle{
    position: relative;
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
    font-size: 60px;
  }
  .titleStyle span {
    font-family: 'Alfa Slab One', cursive;
    position: relative;
    display: inline-block;
    color: rgb(151, 74, 74);
    text-transform: uppercase;
    animation: titleStyle 1s infinite;
    animation-delay: calc(.1s * var(--i));
    
  }
  @keyframes titleStyle {
    0%,40%,100% {
      transform: translateY(0)
    }
    20% {
      transform: translateY(-20px)
    }
  }

#restartBtn{
    background-color: #158dc5;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: din-round,sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 13px 16px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    width: 40%;
}
