html,
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

canvas {
  display: block;
}

#status-bar {
  width: 1060px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: black;
  color: white;
}

#score,
#timer {
  font-weight: bold;
  font-size: 32px;
  color: white;
}

#ranking {
  font-weight: bold;
  font-size: 32px;
  color: green;
}

#content-area {
  display: flex;
  justify-content: space-between;
  margin-left: 20px;
  margin-top: 20px;
}

#image-container {
  margin-left: 20px;
  font-weight: bold;
  font-size: 32px;
  color: white;
}

#image-container img {
  width: 700px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-top: 10px;
}
