/* amazingbarry.css */
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&display=swap');

/* Reset & base styles */
.flash-container {
  margin: 20px 0;
  max-width: 100%;
  overflow: hidden;
}

.jump-links {
  display: flex;
  gap: 10px; /* spacing between buttons */
  justify-content: center;
  margin-top: 20px;
}

.jump-links a {
  background-color: #1f3c88;
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 12px 24px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.jump-links a:hover {
  background-color: #163169;
  transform: translateY(-2px);
}

.jump-links a:active {
  transform: translateY(1px);
}

/* Special buttons for Home and Replay */
.jump-links a.home-button {
  background-color: #4caf50; /* green */
}

.jump-links a.home-button:hover {
  background-color: #3e8e41;
}

.jump-links a.replay-button {
  background-color: #f39c12; /* orange */
}

.jump-links a.replay-button:hover {
  background-color: #d68910;
}

.page-container {
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 auto;
  max-width: 1000px;
  padding: 20px;
  text-align: center;

  h1 {
    color: #1f3c88;
    font-family: 'Bowlby One SC', system-ui, -apple-system, BlinkMacSystemFont,
      'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
      'Helvetica Neue', sans-serif;
    font-size: 4em;
    margin: 0;
  }
}
