*{ 
    margin: 0;
    padding: 0;
box-sizing: border-box;
}

body {
    display: grid;
    margin: 0;
    background-color:#DFF5FF;
  }

  main{
    text-align: center;
  }

  footer{
    text-align: center;
  }

  .plate{
     background-image: url(plate.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 40rem;

  }

  h1{
    font-family: "Kavoon", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.5rem;
    font-size: 4em;
    text-align: center;
    color: #2A5795;
  }

  h2{
    text-align: center;
    font-size: 2.5em
  }

  .navbar{
      font-family: "Kavoon", serif;
      font-weight: 400;
      font-style: normal;
      margin-bottom: 0.5rem;
      font-size: 2em;
      position: relative;
      padding-left: 1rem;
      color: #2A5795;

    ul li{
      margin-right: 20px;
      list-style-type: none;
      text-decoration: none;
      float: right;
   }

   a{
    text-decoration: none;
   }
  }
  
  .game-container {
    height: 50rem;
  }

  .board {
    padding-top: 9rem;
    display: grid;
    grid-template-columns: repeat(3, 140px);
    grid-template-rows: repeat(3, 140px);
    gap: 0;
    margin: 0 auto;
    width: 20rem;
    height: 20rem;
    left: 50%;
    right: 50%;
    padding-top: 20rem;
    padding-left: 1rem;
    place-content: center;
  }

  .cell {
    /* background-color: white; */
    display: grid;
    justify-content: center;
    align-items: center;
    max-width: 30vmin;
    cursor: pointer;
    background-image: contain;
    padding-bottom: 5rem;
    background-repeat: no-repeat;

    border: solid #225068 2px;
    border-radius: 20px;
    place-items: center;
    height: 10vmin;
    width: 10vmin;
    margin: 4px;
    background-size: contain;
   
  }

  .cell:hover {
    background-color: #39369f;
  }

#message{
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;

  img{
    padding-bottom: 2rem;
  }
}


  .restart-botton {
    margin-top: 4rem;
    padding: 10px 20px;
    font-size: 2em;
    background-color: #BECEEA;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #A62B4F;


  }

  .restart-botton:hover {
    background-color: #87aae7;
  }

  