body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

#flashcard-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 90%;
  text-align: center;
}

h2#word {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #555;
}

#wordImage {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
  -webkit-filter: grayscale(90%);
}

.button-container {
 display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

button {
background-color: #007bff;
    color: white;
    padding: 20px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 26px;
    transition: background-color 0.3s ease;
    margin: 0 10px;
}

button:hover {
  background-color: #0056b3;
}

#flashcard-container p:before {
  content: attr(id) ": ";
  font-weight: bold;
}

#synonyms,
#antonyms,
#prepositions {
  font-weight: bold;
}

#examples {
  font-size: 14px;
  color: #777;
}