div { /* centrado? */
	display: flex;
	justify-content: center;
	align-items: center;	
}

table {
  border-collapse: separate;
  border-spacing: 10px;
  padding-right: 0px;
	padding-left: 0px;
}

td.MainStaffEntry { /* formato de los contenedores principales */
  border-radius: 5px;
  padding: 5px;
  background-color: #191919;
	width: 350px;
}

td.StaffEntry { /* formato de los contenedores secundarios */
  border-radius: 5px;
  padding: 5px;
  background-color: #191919;
	width: 200px;
}

img { /* borde redondeado de los avatares */
	border: 3px solid #4c4c4c;
	border-radius: 10px;
}

p.MainNick { /* formato del nick */
  font-family: sans-serif;
  font-weight: bold;
	font-size: 1.6em;
  color: #cbcbcb;
  background-color: none;
}

p.Nick { /* formato del nick */
  font-family: sans-serif;
  font-weight: bold;
	font-size: 1;
  color: #cbcbcb;
  background-color: none;
}

p.Desc { /*  textillo del 1Team*/
  font-family: sans-serif;
	font-size: 0.7em;
  color: #cbcbcb;
  background-color: none;
}

p.RankF { /* formato Founders ^^ */
  font-family: sans-serif;
	font-weight: bold;
	font-size: 1em;
	padding-left: 5px;
  color: #cbcbcb;
  border-left-color: #f4ea28;
	border-left-style: solid;
  border-left-width: 8px;
	border-radius: 5px;
}

p.RankD { /* formato para Davis xD */
  font-family: sans-serif;
	font-weight: bold;
	font-size: 1em;
	padding-left: 5px;
  color: #cbcbcb;
  border-left-color: #e2970f;
	border-left-style: solid;
  border-left-width: 8px;
	border-radius: 5px;
}

p.Rank { /* formato para los otros miembros */
  font-family: sans-serif;
	font-weight: bold;
	font-size: 0.7em;
	padding-left: 5px;
  color: #cbcbcb;
  border-left-color: #e2970f;
	border-left-style: solid;
  border-left-width: 6px;
	border-radius: 3px;
}

p.HeaderTitle {
	font-family: sans-serif;
	font-size: 2.2em;
	font-weight: bold;
  color: #cbcbcb;
  background-color: none;
}

