/* About section */

.gameAbout{
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  align-items: start;
  padding: 30px 0;
}
.gameAbout .whatIsThis, .howToPlay, .rule{
  width: 100%;
  padding-left: 30px;
}
.whatIsThis h3{
  font-size: 2rem;
  font-weight: 700;
  color: #3e3e3e;
  padding-bottom: 20px;
}
.whatIsThis li, .howToPlay li, .rule li{
  padding-bottom: 10px;
  color: #4a5568;
  padding-left: 10px;
}
.whatIsThis li a{
  color: #2b89ea;
  text-decoration: none;
  font-weight: 700;
}
.whatIsThis li a:hover{
  color: #3e3e3e;
}

.whatIsThis li::marker{
  content: "↪";
  font-size: 1.4rem;
  font-weight: 700;
}
li span{
  background-color: rgb(212, 212, 212);
  padding: 0 5px;
  border-radius: 5px;
  color: #2b89ea;
}
.howToPlay h3, .rule h3{
  font-size: 2rem;
  font-weight: 700;
  color: #3e3e3e;
  padding: 20px 0;
}
.howToPlay li::marker{
  content: "⇢";
  font-size: 1.3rem;
  font-weight: 700;
}
.rule li::marker{
  content: "⊰";
  font-weight: 700;
  font-size: 1.3rem;
}

.other{
  padding-top: 20px;
  font-weight: 700;
  color: #3e3e3e;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: start;
  width: 100%;
  padding-left: 30px;
  padding-bottom: 10px;
}
.other span{
  background-color: rgb(212, 212, 212);
  padding: 0 5px;
  border-radius: 5px;
  color: #2b89ea;
}
