body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

.bg-image {
  height: 95%; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.img1 { background-image: url("images/2008.jpg"); }
.img2 { background-image: url("images/IMG_6486.jpg"); }
.img3 { background-image: url("images/my%20lovely%20mother.jpg"); }
.img4 { background-image: url("images/simpson!.jpg"); }

.bg-text {
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0, 0.4);
  color: white;
  font-weight: bold;
  font-size: 80px;
  border: 10px solid #f1f1f1;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 300px;
  padding: 20px;
  text-align: center;
}


.header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  background-color: #f1f1f1;
}

.header h2 {
  text-align: center;
}

.progress-container {
  width: 100%;
  height: 8px;
  background: #ccc;
}

.content {
  padding: 100px 0;
  margin: 50px auto 0 auto;
  width: 80%;
}

.progress-bar {
  height: 8px; 
  background: #fd75ff; 
  width: 0%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

th, td {
  text-align: center;
  padding: 16px;
}

th:first-child, td:first-child {
  text-align: left;
}

tr:nth-child(even) {
  background-color: #f2f2f2
}

.fa-check {
  color: green;
}

.fa-remove {
  color: red;
}

/* Countdown Timer Styling */
#demo {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 2rem;
  color: #111122;
  background-color: #cffbff;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  margin: 20px auto;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#demo span {
  color: #ff4081; /* Accent color for numbers */
  margin: 0 5px;
}
