.header, .content .text {
  text-align: center;
  font-family: "Martel Sans", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.header h1, .content .text h1 {
  font-size: 3rem;
  margin-block: 0.5rem;
}
.header h2, .content .text h2 {
  font-size: 2rem;
  margin-block: 0.5rem;
}
.header p, .content .text p {
  font-size: 1rem;
  font-family: "Martel Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-block: 0;
}
.header p.comment, .content .text p.comment {
  font-size: 0.5rem;
  opacity: 0.5;
}
.header#gameHeader, .content .text#gameHeader {
  display: none;
}

.content {
  display: none;
  align-items: center;
  gap: 5rem;
  justify-content: center;
  font-family: "Martel Sans", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.content .morpion {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.content .morpion .player {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.content .morpion .player .avatar {
  border-radius: 5rem;
  height: 1.5rem;
}
.content .morpion #cestavous {
  animation: clignotement 1s infinite linear;
}
.content .morpion .plate {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}
.content .morpion .plate .line {
  flex: 1;
  align-items: stretch;
  display: flex;
  gap: 0.5rem;
}
.content .morpion .plate .line .box {
  height: 6.25rem;
  width: 6.25rem;
  border-radius: 5px;
  background-color: #C7C7C7;
  outline: none;
  border: none;
}
.content .morpion .plate .line .box:not([disabled=disabled]) {
  cursor: pointer;
}
.content .morpion .plate .line .box.bowser {
  background-color: #FFE8C5;
}
.content .morpion .plate .line .box.mario {
  background-color: #FFD8D8;
}

@keyframes clignotement {
  0% {
    opacity: 1;
  }
  85% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=save-peach.css.map */
