body {
    margin: 0;
    background-color: black;
    overflow: hidden;
}

.logo {
    display: inline-block;
    padding: 10px;
    border: 5px solid #aa0000;
    background-color: #aa0000;
    color: white;
    font-size: 50px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    margin: 10px 10px;
    z-index:10;
}

.real-word {
  color: red;
}

.container {
  display: flex;
  align-items: center;
}

#output {
  background-color: black;
  color: white;
  word-wrap: break-word;
  font-family: monospace;
  z-index:1;
}

#real-words {
  float: left;
  bottom: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.7);
  color: red;
  padding: 10px;
  margin-right: 10px;
}

#main-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index:11;
}

#title {
    text-align: center;
    margin-top: 1em; /* Adjust the negative margin to move the subtitle up */
    font-size: 4rem;
    color: white;
    font-family: "Helvetica", Arial, sans-serif; /* Set the desired font family */
}

#subtitle {
    font-size: 0.7em; /* Adjust the font size as needed */
    letter-spacing: 1.4em; /* Adjust the kerning as needed */
    margin-top: -4.5em; /* Adjust the negative margin to move the subtitle up */
    margin-left: 1.1em;
    text-align: center;
    color: rgb(90, 90, 90);
    font-family: "Helvetica", Arial, sans-serif; /* Set the desired font family */
}

#proposed-words-counter {
  text-align: center;
  margin-top: 2em; /* Adjust the negative margin to move the subtitle up */
  font-size: 1rem;
  color: white;
  font-family: "Courier New", Courier, monospace;
}

#validated-words-counter {
  text-align: center;
  margin-top: 0em; /* Adjust the negative margin to move the subtitle up */
  font-size: 1rem;
  color: white;
  font-family: "Courier New", Courier, monospace;
}

.center-rectangle {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 120px;
  background-color: black;
  z-index: 2;
}

#polygon-canvas {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}