/* picture */

.profile-picture {
	border-radius: 100%;
	background-color: var(--text);
	width: 200px;
	height: 200px;
	clip-path: circle(50% at 50% 50%);
	overflow: hidden;
}

.profile-picture img {
	width: 100%;
}

.profile-border {
	border-radius: 100%;
	background-color: white;
	width: 220px;
	height: 220px;
	position: absolute;
	top: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

/* info */

h1 {
	font-family: 'Quicksand', sans-serif;
	font-size: 42pt;
	font-weight: 700;
	color: var(--pri);
	margin-top: 120px;
}

table.info {
	width: 750px;
}

.info tr {
	background-color: transparent
}

.info h3 {
	font-family: 'Quicksand'. sans-serif;
	font-size: 15pt;
	font-weight: 700;	
	color: var(--pri);
}

.info td {
	font-family: 'Open Sans', sans-serif;
	font-size: 15pt;
	color: var(--text);
}

.info td:nth-child(1) {
	width: 230px;
}

.info td:nth-child(2) {
	width: 20px;
}

.info td:nth-child(3) {
	width: 500px;
}


.info a {
	text-decoration: none;
	color: var(--text);
}

.info a:hover {
	color: var(--sec);
}

.content h2 {
	font-family: 'Quicksand', sans-serif;
	font-size: 24pt;
	color: var(--pri);
	font-weight: 700;
	width: 960px;
}

/* games table - secretly, this table
 * is the same as the tourneys tabl, but we style separately for the sake of posterity */

.games td:nth-child(1) {
	width: 250px;
}

.games td:nth-child(2) {
	width: 50px;
}

.games td:nth-child(3) {
	width: 100px;
}

table.lgames.expand {
	margin: 0px;
	table-layout: fixed;
}

table.lgames {
	table-layout: fixed;
}

.lgames tr {
	background-color: transparent;
}

.lgames tr td {
	background-color: var(--table-light);
}

.lgames tr:nth-child(4n+3) td {
	background-color: var(--table-dark);
}

.lgames tr:nth-child(4n) td {
	background-color: var(--table-dark);
}

.lgames td {
	display: flex;
	justify-content: space-around;	
}

.lgames td .cell:nth-child(1) {
	width: 500px;
	display: flex;
}

.lgames td .cell:nth-child(2) {
	width: 200px;
	display: flex;
	justify-content: flex-end;
}

.lgames td .cell:nth-child(3) {
	width: 200px;
	display: flex;
	justify-content: flex-end;
}

.lgames td .cell:nth-child(4) {
	width: 50px;
	display: flex;
	justify-content: flex-start;
}


.lgames td .cell2:nth-child(1) {
	width: 450px;
	display: flex;
}

.lgames td .cell2:nth-child(2) {
	width: 100px;
	display: flex;
	justify-content: flex-end;
}

.lgames td .cell2:nth-child(3) {
	width: 100px;
	display: flex;
	justify-content: flex-end;
}

.lgames td .cell2:nth-child(4) {
	width: 150px;
	display: flex;
	justify-content: flex-start;
}

.lgames td .cell2:nth-child(5) {
	width: 50px;
	display: flex;
	justify-content: flex-start;
}

.lgames .expand tr:nth-child(4n+3) td,
.lgames .expand tr:nth-child(4n) td {
	background-color: transparent;
}

.lgames tr:first-child td:first-child {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.lgames tr:nth-child(2) td:first-child,
.lgames tr:nth-child(2) td:last-child {
	border-radius: 0px;
}

.lgames .expand a {
	text-decoration: none;
	color: var(--text);
}

.lgames .expand a:hover {
	color: var(--sec);
}

.lgames .expand td {
	padding: 10px;
	display: table-cell;
}

.lgames .expand td:nth-child(1) {width:10px;}
.lgames .expand td:nth-child(2) {width:200px;}
.lgames .expand td:nth-child(3) {width:100px;}

/* triangle */

.tri-expand {
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-left: 12.124px solid var(--pri);
	margin-left: 10px;
	display: inline-block;
}

.flip {
	border: 7px solid transparent;
	border-top: 12.124px solid var(--sec);
}

.tri-expand:hover {
	border-left: 12.124px solid var(--ter);
}

.flip:hover {
	border: 7px solid transparent;
	border-top: 12.124px solid var(--ter);
}
