@media print {
  /* Define print styles */
  .ignore-print .ignore-print * {
      display: none;
  }
  #matchup {
    border-bottom: 0px;
  }
  #bracket {
    border-bottom: 0px;
  }
  #more {
    border-bottom: 0px;
  }

  #bracket-wrapper {
    position: absolute;
    left: 0;
    top: 0;
  }
  #full-bracket {
      position: absolute;
      left: 0;
      top: 0; 
      transform: scale(0.5);
      transform-origin: top left;
      border-bottom: 0px;
  }
  .regions_bracket {
    height: 100%;
    width: 100;
  }
  .image-container {
    max-width: 80%;
  }

}

#tournament-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  align-items: center;
  justify-content: center;
  max-height: 100vh;
}

.match-container {
  display: flex;
  justify-content: space-between;
  max-width: 90%;
  margin-bottom: 20px;
}

.champion-container {
  display: flex;
  justify-content: space-between;
  max-width: 90%;
  margin-bottom: 20px;
  text-align: center;
}

.image-container {
  position: relative;
  cursor: pointer;
  max-width: 50%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;

}

.image-container img {
  max-height: 400px;
  height: auto;
  width: auto;
  border-radius: 8px;
  margin: 20px;
}

.mascot-image {
  position: relative;
  cursor: pointer;
  max-width: 90%;
  overflow: hidden;
}

.mascot-image img {
  max-height: 400px;
  height: auto;
  width: auto;
  border-radius: 8px;
  margin: 20px;
}

.selection-box {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 5px;
  border: 3px solid black;
  border-radius: 8px;
  display: none;
}

.result-container {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-right: 20px;
}

.burger-menu {
  display: none;
  font-size: 20px;
  cursor: pointer;
  align-self: center;
  margin-left: 40px;
}

.alert-details {
  font-size: 12px;
}

.alert-box {
  width: 100%;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #333;
  }
  .nav-links.top-nav-collapse {
    top: 50px;
  }

  .nav-links.show {
      display: flex;
  }

  .nav-links li {
      margin: 0;
      text-align: center;
  }

  .burger-menu {
      display: block;
  }
}