body {
    margin: 0;
    padding: 0;
    background-color: #1e1e2f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.Game {
    width: 510px;
    text-align: center;
    font-family: 'Cambria', Cochin, Georgia, Times, 'Times New Roman', serif;
    color: rgb(194, 3, 3);
    font-weight: 500;
}

.title {
    background-color: rgb(107, 124, 141);
    padding: 15px 0;
    margin: 10px 0;
    font-size: 30px;
    font-weight: bold;
    border-radius: 25px;
}
.board {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.sq {
    width: 165px;
    height: 165px;
    background-color: rgb(107, 124, 141);
    margin: 2px;
    font-size: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    color: rgb(194, 3, 3);
}

.sq:hover {
    background-color: rgb(45, 60, 81);
    cursor: pointer;
}

@media (max-width: 900px) {
  .Game {
    width: 350px;
  }
  .sq {
    width: 110px;
    height: 110px;
    font-size: 50px;
    margin: 1.5px;
  }
  .title {
    font-size: 24px;
    padding: 12px 15px;
    margin: 10px 0;
  }
}

@media (max-width: 411px) {
  .Game {
    width: 280px;
  }
  .sq {
    width: 85px;
    height: 85px;
    font-size: 40px;
    margin: 1px;
  }
  .title {
    font-size: 20px;
    padding: 10px 12px;
    margin: 8px 0;
  }
}
