/* Add your styles for the instructions page here */

.instructions-container {
  width: 500px;
  margin: 2rem auto;
  padding: 3rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 500px;
}

.instructions-container h1 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.instructions-container p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 1.5rem;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  min-height: 50px;
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

.instructions-container hr {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  margin: 2rem 0;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
