body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #000000;
  color: #FFFFFF; /* Set text color to white */
}

#canvas-container {
  width: 80%;
  max-width: 1600px;
  padding: 20px;
  background-color: #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  color: #FFFFFF; /* Ensure text inside canvas container is white */
}

div {
  margin-bottom: 20px;
  color: #FFFFFF; /* Set text color to white for all divs */
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

embed {
  width: 100%;
  height: 100%;
  filter: invert(1);
}

.clamp-text {
  font-size: clamp(12px, 2vw, 20px);
  text-align: center;
  margin-top: 10px;
  max-width: 100%;
  color: #FFFFFF; /* Set text color to white for clamp-text class */
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #FFFFFF; /* Set text color to white for flex-row class */
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF; /* Set text color to white for flex-column class */
}

.media-element {
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Ensure the media element and its label are in a column layout */
}

.media-element:hover {
  transform: scale(1.1);
}

.definition-element {
  flex: 1;
  padding-left: 20px;
  color: #FFFFFF; /* Set text color to white for definition-element class */
}