/* CSS */
body {
	background-image: url("backgroundTwan.jpg");
	background-size: cover;
	font-family: Arial, sans-serif;
	color: #fff;
	margin: 0;
	padding: 0;
  }
  
  header {
	background-color: #333;
	padding: 20px 0;
  }
  
  nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center; /* Center navigation links */
  }
  
  nav ul li {
	margin: 0 10px;
  }
  
  nav ul li a {
	text-decoration: none;
	color: #fff;
	font-size: 1.2em; /* Increase font size */
  }
  
  .white-box {
	background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black box */
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	max-width: 600px;
	margin: 100px auto;
  }
  
  .countdown {
	font-size: 2.5em; /* Increase font size */
	font-weight: bold; /* Make text bold */
	margin-top: 20px;
  }
  
  .progress-bar {
	margin-top: 20px;
	height: 20px;
	background-color: #000;
	border-radius: 10px;
	position: relative;
  }
  
  .progress-indicator {
	height: 100%;
	background-color: #fff;
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  
  .progress-percent {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 0.8em;
  }
  
  footer {
	background-color: rgba(0, 0, 0, 0.8);
	color: rgb(255, 255, 255);
	text-align: center;
	padding: 20px;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
  }
  