
.instructions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 100%;
  max-width: 600px;
  padding: 10px 40px 10px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  border-radius: 8px;
  background-color: white;
}

.instructions h1 {
  text-align: center;
  font-size: 1.5rem;
}


.instructions .rare-bird-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff; /* Blue background */
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,123,255,0.3);
  transition: all 0.2s ease;
}

.instructions .rare-bird-btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
  box-shadow: 0 4px 8px rgba(0,123,255,0.4);
  transform: translateY(-1px);
}

.instructions .rare-bird-btn:active {
  transform: translateY(0);
}




