body {
  font-family: 'Jost', sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline {
  text-transform: uppercase;
	color: #d24182;
  font-size: 60px;
  margin-top: 50px;
}

.container {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin-top: 20px;
}

.column {
  text-align: center;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: #fff;
}

.column.light-red {
  background-color: #ffebee;
}

.column:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.heading {
  font-size: 24px;
  margin-bottom: 10px;
  cursor: pointer;
}

.stopwatch {
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #333;
}

.spotlight-button {
  padding: 10px 20px;
	  font-family: 'Jost', sans-serif;
	  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
  background-color: gray;
  color: white;
  border: none;
  border-radius: 5px;
  outline: none;
  transition: background-color 0.3s ease;
}

.spotlight-button.active {
  background-color: green;
}

.pie-chart {
  margin-top: 20px;
  width: 300px;
  height: 300px;
}

.small-text {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #666;
  text-align: center;
  width: 90%;
  max-width: 500px;
}

.color-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px; /* Adjust thickness as needed */
}

/* Add specific colors for each line based on the corresponding color on the pie chart */
.color-line.player1 { background-color: #181818; }
.color-line.player2 { background-color: #343434; }
.color-line.player3 { background-color: #a0a0a0; }
.color-line.player4 { background-color: #e1e1e1; }