@font-face {
    font-family: 'Papyrus';
    font-style: normal;
    font-weight: 400;
    src: url('papyrus.ttf') format('truetype');
}

body {
  text-align: center;
  background-color: rgb(226, 226, 226);
  color: black;
  font-family: 'Papyrus', sans-serif;
}

h1 {
  font-size: 7rem;
  padding-top: 50px;
  padding-bottom: 200px;
  color: rgb(51, 51, 51);
  text-shadow: 2.5px 2.5px 2.5px rgb(209, 143, 143);
  margin-bottom: 15px;
  letter-spacing: 0.2rem;
}

.placeholder {
  background-color: rgb( 0, 0 , 255);
	font-size: 7rem;
}

.top_div {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-column-gap: 5px;
}

.topcenter_div {
  margin-left: auto;
  margin-right: auto;
}

#name {
  font-size: 2rem;
}

.inicio {
  /*background-color: rgb( 0, 0 , 255);
	/*margin: 0px 650px 650px 0px;
	padding: 20px*/
  display: grid;
  grid-template-rows: 0.2fr 0.3fr 0.3fr;
  font-size: 3rem;
  border-radius: 10px;
  color: black;
}

.queue_div {
  display: none;
  text-decoration: none;
  /*	background-color: rgb( 0, 0 , 255);
	margin: 200px 650px;
	padding: 15px 15px 15px 15px;*/
  font-size: 3rem;
  border-radius: 10px;
  color: black;
}


.lobby {
  display: none;
  text-decoration: none;
  /*	background-color: rgb( 0, 0 , 255);
	margin: 200px 650px;
	padding: 15px 15px 15px 15px;*/
  font-size: 20px;
  border-radius: 10px;
  color: white;
}

.ingame {
  display: none;
}

.table_div {
  /*font-family: arial, sans-serif;*/
  /* float: left; */
  text-align: left;
  /* position: absolute; */
}

.player_table {
  /*font-family: arial, sans-serif;*/
  /* float: left; */
  text-align: left;
  border-collapse: collapse;
  border-radius: 8%;
  display: inline-block;
}

.player_table td, th {
  text-align: left;
  font-size: 4rem;
}

th:nth-child(even) {
  /*background-color:red	;
	/*border-radius: 10%;*/
}

.board {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.main_card {
  display: inline-block;
  border-radius: 7%;
  box-shadow: 0;
  transition: 0.3s;
  width: 300px;
  height: 400px;
  background-color: white;
  margin-right: 10px;
  margin-bottom: 10px;
}

.main_card h1 {
  font-size: 500%;
  padding-top: 0px;
  padding-bottom: 0px;
}

.main_card p {
  text-shadow: 1px 1px 1px red;
}

.card {
  display: inline-block;
  border-radius: 7%;
  box-shadow: 0;
  transition: 0.3s;
  width: 300px;
  height: 400px;
  background-color: white;
  margin-right: 10px;
  margin-bottom: 10px;
}

.card h1 {
  font-size: 500%;
  padding-top: 0px;
  padding-bottom: 0px;
}

.card p {
  text-shadow: 1px 1px 1px red;
}

.card:hover {
  box-shadow: 10px 5px 5px black;
  width: 315px;
  height: 420px;
}

.card:hover h1 {
  font-size: 525%;
}

.card:hover p {
  font-size: 105%;
}

.card_container {
  padding-top: 15%;
  padding-bottom: 30%;
  padding-right: 10%;
  padding-left: 10%;
}

button {
  background-color: rgb(209, 143, 143);
  border: none;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: 1em;
	/* font-family: cursive; */
}
input,
textarea,
button {
    font-family: inherit
}
.help-box {
    position: fixed;
    z-index: 1;
    padding: 15px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.help-box-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    font-size: 2rem;
}
.help-box-content p {
    text-align: justify;
}

.help-box-content p:last-child {
    margin-bottom: 0;
}

.help-box-content p:first-child {
    margin-top: 0;
}

.help-box-content span.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.help-box-content span.close:hover,
.help-box-content span.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}