#calendar-container {
  display: flex;
  justify-content: center;
}


.tournaments {
  margin: 40px 0;
  padding: 20px 0;
  background-color: #ddd;
  color: #151;
}

.tournaments h2 {
  text-align: center;
}

.tournaments section.tournament-list {
  margin: 15px 0;
}

.tournaments .game-title {
  font-size: 1.4em;
}

.tournaments ul {
  list-style: none;
}

.tournaments .tournament-list ul li a {
  display: inline-block;
  font-weight: bold;
  color: #eee;
  background: linear-gradient(rgb(143, 98, 54), #642);
  padding: 5px;
  margin: 3px 0;
  border-radius: 3px;
  border: 1px solid #777;
  box-shadow: 1px 1px 2px 2px #333;
  text-decoration: none;
}
.tournaments .tournament-list ul li a:hover {
  background: linear-gradient(rgb(172, 123, 75), rgb(141, 91, 41));
}


@media all and (min-width: 1000px) {
  .tournaments section.tournament-list {
    width: 70vw;
    margin: 20px auto;
  }
}