@charset "UTF-8";
.results_menu {
  width: 80%;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.results_menu li{
  list-style: none;
}

.results_menu a{
  font-size: 25px;
  text-decoration: none;
  color: white;
}

.year_result {
  background-color: rgb(69, 69, 69);
  cursor: pointer;
  padding-left: 10%;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 20px;
}

@media screen and (min-width: 700px) {
  .footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media screen and (max-width: 700px) {
  .results_menu {
    text-align: center;
    width: 60%;
    grid-template-columns: repeat(1, 1fr);
    margin: auto;
  }
  .year_result {
    padding-left: 20%;
    padding-right: 20%;
    margin-left: auto;
    margin-right: auto;
  }
  main {
    margin-bottom: 50px;
  }
}