/* Base Styles */
body {
  font-family: 'Times New Roman', serif;
  padding: 20px;
  background-color: #f5f5f5;
  color: #333;
}

.dictionary {
  margin: 20px 0;
}

  .dictionary article {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 20px;
   } 

.entry {
  margin-bottom: 20px;
}

.word {
  font-size: 24px;
  font-weight: bold;
}

.part-of-speech {
  font-style: italic;
  color: #888;
}

.definition {
  margin-top: 5px;
}

/* Dark Mode Styles */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #1e1e1e;
    color: #ccc;
  }

  .dictionary {
  }

  .dictionary article {

    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
    background-color: #2b2b2b;
   } 

  .word {
    color: #e2e2e2;
  }

  .part-of-speech {
    color: #999;
  }
}

