:root {
	--headerColor: #E07A02;
	--footerColor: #034068;
	--highlightColor: #03426B;
	--neutralColor: #363636;
}

body {
	font-family: sans-serif;
	margin: 0;
	padding: 0;
}

.site-header {
	background-color: var(--headerColor);
	color: white;
	padding: 20px;
    /* padding-bottom: 80px; */
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: start;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}
@media screen and (orientation: portrait) {
	.tall-header {
        height: 225px;
	}
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 100px;
	margin-right: 10px;
}
@media screen and (orientation: portrait) {
	.logo img {
        height: 132px;
	}
}

.site-title {
	font-family: 'Racing Sans One', sans-serif;
	font-size: 22px;
    padding-top: 20px;
}

.nav-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	margin-left: auto; /* right-align */
}

header .site-nav {
	font-family: 'Covered By Your Grace', cursive;
	font-size: 18px;
    font-weight: 100;
    padding: 0 40px 0 0;
	color: white;
	text-decoration: none;
    margin-left: auto; /* right-align */
}
@media screen and (orientation: portrait) {
	header .site-nav {
        font-size: 26pt;
	}
}

header .site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

header .site-nav li {
	margin: 0;
	padding: 0 10px;
}

header .site-nav a {
    color: white;
    text-decoration: none;
}

header .active a {
    text-decoration: underline;
    font-weight: bold;
}

.current-player {
	font-family: 'Covered By Your Grace', cursive;
	font-size: 16px;
	color: var(--highlightColor);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	align-self: flex-end;
    padding-right: 60px; /* Match the padding of the site-nav */
}
@media screen and (orientation: portrait) {
	.current-player {
        font-size: 24pt;
	}
}

.player-name,
.player-team {
	text-align: right;
}