/* Colors */

/* Speed Blue: #013369; */
/* White: #ffffff; */
/* Facemask Gray: #a5acaf; */
/* Anvil Black: #10252c; */

* {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  color: #10252c;
}
header {
  background-color: #013369;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100vw;
}
.logoTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0;
}
a img {
  max-width: 84px;
  height: 84px;
  padding-bottom: 12px;
}
.horseshoe {
  filter: drop-shadow(2px 6px 4px rgb(0, 0, 0));
}
nav ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.nav-link {
  margin-top: 1rem;
  list-style: none;
  font-size: 1.5rem;
  padding-right: 2rem;
}
.nav-link:last-child {
  padding-right: 0;
}
.nav-link a {
  text-decoration: none;
  color: #fff;
}
.nav-link a:hover {
  border-bottom: 2px solid #ffffff;
}
h1 {
  font-size: 2.5rem;
  color: #ffffff;
}
h2 {
  text-align: center;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: #10252c;
  margin: 1rem 0;
}
h2.season-header {
  text-align: left;
  margin-left: 24px;
}
h2 a {
  color: #10252c;
  text-decoration: none;
}
h2 a:hover {
  color: #013369;
  border-bottom: 3px solid #013369;
}
h3 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #013369;
  font-size: clamp(1.25rem, 5vw, 1.75rem)
}
h3.update-title {
  margin: 0 0 12px 1rem;
}
h3.stats-update {
  margin: 2rem 0 12px 1rem;
}
.season-divider {
  background: #013369;
  width: 20%;
  margin-left: 1rem;
  padding-top: 1px;
  margin-bottom: 1.25rem;
}
.stadium-location {
  margin: 1.25rem 0 1rem 0;
}
.stadium-location a {
  text-decoration: underline;
}
.stadium-location a:hover {
  color: #013369;
  border-bottom: 2px solid #013369;
  text-decoration: none;
}
.game-divider {
  background: #013369;
  width: 80%;
  margin: 8px 0 1rem 0;
}
.game-divider:last-child {
  display: none;
}
.player-container {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
}
.player-info {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  height: 240px;
  margin: 1rem 1rem 12px 1rem;
  max-width: 600px;
  border: 1px solid #013369;
  border-radius: 6px;
  box-shadow: 2px 2px 6px rgba(16, 37, 44, 0.5);
}
.player-info:hover {
  box-shadow: 2px 2px 12px rgba(16, 37, 44, 0.75);
}
img {
  max-width: 200px;
  height: 150px;
  margin-right: 12px;
}
.playerShow {
  max-width: 400px;
  height: auto;
}
.teamImage {
  max-width: 84px;
  height: auto;
  margin: 0;
}
.player-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.player-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.player-section {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  height: 240px;
  margin: 24px 0;
  padding-left: 1rem;
}
.player-details {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.playerNum, .playerPos {
  display: flex;
  justify-content: space-evenly;
  font-size: 1.25rem;
  font-weight: bold;
}
.playerNum {
  padding-right: 12px;
}
.playerPos {
  padding-left: 12px;
}
.status, .xp, .college {
  font-size: 1.15rem;
}
.regseason {
  padding: 1.5rem;
}
.week-info:last-child {
  margin-bottom: 2rem;
}
.row-header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.opponent {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding-left: 1rem;
}
.week, .gameDate, .gameTime, .oppCity, .oppName, .result, .score, .stadium-location {
  font-size: 1.23rem;
}
.oppName {
  padding: 0 1rem 0 8px;
}
.week {
  font-weight: bold;
  padding-right: 1rem;
}
.gameDate {
  padding-right: 12px;
}
.gameTime {
  padding-left: 12px;
}
.game-details {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 12px 0 0 0;
}
.opp-details {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.location-details {
  display: flex;
  justify-content: flex-end;
}
.away-game, .home-game {
  font-weight: bold;
  font-size: 1rem;
  padding-right: 12px;
}
.game-result {
  display: flex;
  justify-content: space-around;
  padding-left: 1.5rem;
}
.result {
  font-weight: bold;
  padding-right: 1rem;
}
section.edit-player {
  margin-top: 36px;
  text-align: center;
}
.edit-btn {
  background: #013369;
  padding: 12px 18px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 1.15rem;
  text-decoration: none;
}
.edit-btn:hover {
  background: #10252c;
  text-decoration: underline;
}
.stats-section {
  margin-top: 36px;
}
.form-container {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
form {
  width: 50vw;
}
.edit-fields {
  margin-top: 8px;
}
.form-label {
  color: #10252c;
  margin-bottom: 4px;
}
input,
select,
textarea {
  border: 2px solid #10252c;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 8px;
}
input[type="text"],
input[type="number"],
select,
textarea {
  font-family: sans-serif;
  font-size: 1rem;
  display: block;
  box-sizing: border-box;
  width: 60%;
  padding: 4px;
}
.form-label {
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.submit-button {
  font-size: 1rem;
  background: #013369;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  width: 60%;
}
.submit-button:hover {
  background: #10252c;
  cursor: pointer;
}
.statsList {
  margin-bottom: 12px;
}
.playerStats {
  color: #013369;
  font-size: 1.1rem;
  margin-top: 4px;
}
@media screen and (max-width: 819px) {
  section.player-section {
    padding: 0;
    margin: 1rem 3rem;
  }
  .player-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .player-info {
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 80vw;
    height: 40vh;
  }
  .player-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    padding: 12px 0;
  }
  .playerShow {
    max-width: 50vw;
    height: auto;
  }
  .player-details {
    padding: 0;
  }
  section.edit-player {
    padding-top: 64px;
    margin-bottom: 1.5rem;
  }
  .edit-btn {
    padding: 12px 36px;
    margin: 0 auto;
  }
  .stats-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 96px 0;
  }
  .week-info {
    padding: 0 0 0 8px;
  }
  .away-game, .home-game {
    padding-right: 4px;
  }
  .teamImage {
    max-width: 48px;
    height: auto;
  }
  .oppName {
    font-size: 18px;
    padding-left: 12px;
  }
  .game-result {
    padding-left: 1rem;
  }
  .week,
  .gameDate,
  .gameTime,
  .result,
  .score {
    font-size: 18px;
  }
  .opponent {
    padding: 0;
  }
  .oppCity {
    display: none;
  }
}