* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans';
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Permanent Marker';
}

header {
  font-size: 1em;
  text-align: center;
  background-color: #6e6e6e;
  padding-top: 5px;
}

header img {
  width: 50px;
}

header h1 {
  margin-bottom: 20px;
  padding: 0 10px;
}

.headerBottom {
  background-color: #d92b2b;
  height: 20px;
}

.headerBottom2 {
  background-color: black;
  height: 5px;
}

body {
  background-color: #6e6e6e;
}

.page {
  background-image: url('../media/footballPlayer.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.contentContainer {
  background: rgba(245, 245, 245,0.97);
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 20px 0;
  min-height: 50vh;
}

.content {
  text-align: center;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

#video-container {
  text-align: center;
}

#video {
  text-align: center;
  align-items: center;
  align-content: center;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

#video iframe,
#video object,
#video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.resultsHeader {
  color: #d92b2b;
}

#data ul {
  list-style-type: none;
}

.teamInfo {
  text-align: center;
  padding: 0 10px;
}

.standings {
  padding-bottom: 20px;
  text-align: center;
}

/* .standings div {
  border: 1px solid red;
} */

.standings table {
  margin-left: auto;
  margin-right: auto;
}

th {
  border-bottom: 1px solid black;
  font-style: italic;
  font-size: 0.5em;
}

td {
  font-size: 0.6em;
  padding: 0 10px 0 10px;
}

.gameInfoContainer {
  text-align: center;
}

.gameInfo {
    display: flex;
    justify-content: space-around;
}

.gameInfo div {
  padding: 0 10px;
  font-size: 0.8em;
}

.gameInfo p {
  font-weight: bold;
  font-size: 1.5em;
}

#football {
  width: 100px;
}

footer {
  background-color: #6e6e6e;
  text-align: center;
  padding-bottom: 30px;
}

footer p {
  font-style: italic;
}

.footerTop {
  background-color: #d92b2b;
  height: 25px;
}

.footerTop2 {
  background-color: black;
  height: 5px;
  margin-bottom: 8px;
}

.githubLink,
.githubLink:visited {
  font-family: 'Permanent Marker';
  font-size: 1.3em;
  color: black;
  text-decoration: none;
}

.githubLink:hover,
.githubLink:visited:hover {
  color: #242424;
}

.hidden {
  display: none;
}

/* slightly less tiny phone screen */
@media screen and (min-width: 321px) {
  th {
    font-size: 0.6em;
  }
  td {
    font-size: 0.7em;
  }
}

/* tablet */
@media screen and (min-width: 700px) {
  header {
    font-size: 1.7em;
  }
  header img {
    width: 100px;
  }
  .content {
    padding: 0;
  }
  .gameInfo div {
    font-size: 1.4em;
  }
  .standings {
    display: flex;
    justify-content: space-around;
  }
  .standings div {
    padding: 0 20px;
  }
  th {
    font-size: 0.7em;
  }
  td {
    font-size: 0.8em;
  }
  .team {
    display: flex;
    justify-content: space-around;
  }
}

/* desktop */
@media screen and (min-width: 921px) {
  .contentContainer {
    min-height: 70vh;
  }
  .content{
    text-align: left;
    width: 80%;
  }
  #video-container {
    padding: 0 15% 0 15%;
  }
  #football {
    width: 140px;
  }
}
