/** General **/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
main {
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  border: 1px solid grey;
}
table {
  width: 100%;
  height: 100vh;
  border-collapse: collapse;
}
table tr {
  border: 1px solid grey;
}
table td {
  border: 1px solid grey;
}
/* colonne joueur 1 */
table tr:nth-child(1) td:nth-child(1) {
  text-align: center;
  width: 25%;
  background-color: antiquewhite;
}
table tr:nth-child(1) td:nth-child(1) {
   font-size: 2.5em; /*font-size ne peut s'appliqué ici */
}
/* colonne joueur 2 */
table tr:nth-child(1) td:nth-child(5) {
  text-align: center;
  width: 25%;
  background-color: antiquewhite;
}
table tr:nth-child(1) td:nth-child(5)  {
  font-size: 2.5em;
}
#msg {
  height: 50px;
}
/* case à jouer */
.case {
  position: relative;
  width: 15%;
  height: 100px; 
}
/* container des div de la case */
.container-div-case {
  position: absolute;  
  height: 100%;
  top: 0;
  width: 100%;
  left: 0;
}
/* première div du conainer */
.container-div-case div:nth-child(1) {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* première div, paragraphe */
.container-div-case div:nth-child(1) p {
  font-size: 230px;
}
/* deuxième div du container */
.container-div-case div:nth-child(2) {
  font-size: 10px;
}
/* deuxième div, paragraphe */
.container-div-case div:nth-child(2) p {
  font-size: 15px;
  text-align: right;
}

/* message */
table tr:nth-child(4) td {
  text-align: center;
  width: 25%;
}
.btn {
  width:100px;
  margin:15px;
}
/************************************RESPONSIVE********************************/

/************************************** écrans d'ordinateur */
@media screen and (min-width: 1024px) {
}
/*************************************** écrans de tablette */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .case {
    text-align: center;
    height: 33%;
  }
  /* colonne joueur 1 */
  table tr:nth-child(1) {
    text-align: center;
    width: 25%;
    background-color: antiquewhite;
  }
  /* message */
  table tr:nth-child(5) td {
    text-align: center;
    width: 25%;
  }
  /* colonne joueur 2 */
  table tr:nth-child(6) {
    text-align: center;
    width: 25%;
    background-color: antiquewhite;
    font-size:2em;
  }
  /* symbol */
  .container-div-case div:nth-child(1) p {
    font-size: 100px;
  }
}
/*********************************** écrans de téléphone portable */
@media screen and (max-width: 767px) {
  .case {
    text-align: center;
    height: 33%;
  }
  /* colonne joueur 1 */
  table tr:nth-child(1) {
    text-align: center;
    width: 25%;
    background-color: antiquewhite;
  }
  /* message */
  table tr:nth-child(5) td {
    text-align: center;
    width: 25%;
  }
  /* colonne joueur 2 */
  table tr:nth-child(6) {
    text-align: center;
    width: 25%;
    background-color: antiquewhite;
    font-size:2em;
  }
  /* symbol */
  .container-div-case div:nth-child(1) p {
    font-size: 100px;
  }
}
