:root {
  --forest-green: #1e8526ff;
  --raisin-black: #1a181bff;
  --antiflash-white: #f4f4f6ff;
  --misty-rose: #fae1dfff;
  /* --desert-sand: #e4c3adff; */
  --desert-sand: #ad7755;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--raisin-black);
}

h3,
h4 {
  margin: 0.5rem 0;
}

/* .sidenav ul li a {
  padding: 0;
  margin: 0;
} */

section p {
  margin-top: 1rem;
}

#schedule {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  gap: 1rem;
  margin-bottom: 1rem;
}

#schedule .weeklyMatch {
  display: flex;
  flex-direction: column;
  width: 301px;
  border: 1px solid black;
  border-radius: 5px;
  overflow: hidden;
}

.matchDate {
  height: 27px;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid black;
  padding-bottom: 0.5rem;
  background-color: #ededed;
}

.homeAway {
  display: grid;
  grid-template-columns: 100px 2rem 100px 2rem;
  text-align: center;
  background-color: #ededed;
  border-bottom: 1px solid black;
}
.homeAway .leftPadding {
  /* matches score width for appearance of centering */
  padding-left: 2rem;
}

.leftBorder {
  border-left: 1px solid grey;
}
.rightBorder {
  border-right: 1px solid grey;
}

/* Removerul last border-bottom to avoid double line */
#schedule .weeklyMatch .game:last-child > * {
  border-bottom: none;
}

#schedule .game {
  display: grid;
  grid-template-columns: 110px 2.5rem 110px 2.5rem;
}

.team {
  padding-left: 0.25rem;
  border-bottom: 1px solid grey;
}

#schedule .score {
  text-align: center;
  width: 2.5rem;
  color: red;
  border-left: 1px solid grey;
  border-right: 1px solid grey;
  border-bottom: 1px solid grey;
}

.windup {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 2rem;
  background-color: rgb(229, 229, 230);
}
.windup span {
  text-align: center;
}
.windup img {
  max-height: 151.2px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.email {
  font-weight: bold;
  font-style: italic;
}
