body {
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.progress-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 280px;
}

.progress-bar {
  width: 200px;
  height: 10px;
  background-color: gray;
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar .progress {
  height: 100%;
  width: 0%;
  background-color: white;
  position: absolute;
  animation: progress-animation 1200s infinite linear;
  border-radius: 5px;
}

@keyframes progress-animation {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

.time-remaining {
  color: white;
  font-size: 10px;
  text-align: center;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25vh;
  width: auto;
  margin-bottom: 70px;
}

.logo {
  max-width: 100px;
  max-height: 100px;
}
