
main
{
  display: flex;
  gap: 2rem;
  padding: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  user-select: none;
}

.lessonCard 
{
  border: solid 3px #a5d8ff;
  background-color: #d0e8ff;
  width: 280px;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lessonCard:hover 
{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.lessonCard h2 
{
  margin: 0 0 1rem;
  color: #003366;
  font-size: 25px;
}

.lessonCard p 
{
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1rem;
}

.lessonCard button 
{
  background-color: #004aad;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lessonCard button:hover 
{
  background-color: #003a8c;
}

a
{
  text-decoration: none;
}