body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  background-color: #f2f2f2;
  padding: 2rem;
}
.bg-body {
  background: url(../images/bg.jpg) no-repeat fixed center;
  background-size: cover;
}
h1,
h2 {
  text-align: center;
  font-weight: 700;
}

#canvas-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

canvas {
  border: 2px solid #333;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

canvas:hover {
  transform: scale(1.05);
}

#winner-info {
  background-color: #e0ffe0;
  padding: 20px;
  border: 2px dashed green;
  text-align: center;
  border-radius: 10px;
  margin-top: 20px;
}

#countdown {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}