.info {
  display: flex;
  height: 100vh;
  padding-right: 20%;
  padding-left: 20%;
  justify-content: center;
  align-items: center;
}

.splash {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.roster {
  display: flex;
  min-height: 100vh;
  padding: 150px 10%;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.body {
  background-color: #f4e300;
  font-family: termina, sans-serif;
  color: #000;
  font-size: 1.5em;
  line-height: 1em;
}

.logo {
  max-width: 350px;
}

.header {
  position: fixed;
  left: 0%;
  top: 5%;
  right: 0%;
  bottom: auto;
  display: flex;
  justify-content: center;
}

.footer {
  position: fixed;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 5%;
  display: flex;
  justify-content: center;
}

.button {
  width: 180px;
  padding: 10px 30px 8px;
  border-radius: 100px;
  background-color: #000;
  color: #f4e300;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.button.w--current {
  text-decoration: none;
}

.roster_block {
  display: flex;
  width: 30%;
  min-height: 300px;
  min-width: 25%;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #000;
  background-image: url('../images/764_RosterArtboard-5.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: repeat;
}

.roster_block:hover {
  background-image: none;
}

.text-block {
  color: #f4e300;
  font-weight: 700;
}

.roster_title {
  color: #f4e300;
  font-weight: 700;
  text-align: center;
}

.roster_links {
  justify-content: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #f4e300;
}

.roster_link {
  color: #f4e300;
}

@media screen and (max-width: 991px) {
  .roster {
    padding-right: 20px;
    padding-left: 20px;
  }

  .roster_block {
    min-height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .info {
    padding-right: 10%;
    padding-left: 10%;
  }

  .roster {
    padding-right: 10px;
    padding-left: 10px;
  }

  .roster_block {
    width: 100%;
    min-height: 400px;
    min-width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .info {
    padding-right: 40px;
    padding-left: 40px;
  }

  .roster {
    padding: 125px 10px 120px;
    align-content: flex-start;
  }

  .body {
    font-size: 1.2em;
  }
    
    .roster_links { font-size:2em; padding-top:10px; }

  .logo {
    max-width: 75%;
  }
}

