/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Roboto', sans-serif;
}

/* Background */
body {
  background: url('img/background.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Overlay */
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

/* Text */
.content {
  color: #fff;
  max-width: 700px;
}

.content h1 {
  font-size: 3em;
  font-family: 'Unica One', cursive;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.quote {
  font-style: italic;
  font-size: 1.1em;
  color: #ffd700;
}

.small {
  font-size: 0.9em;
  color: #ccc;
}

.progress-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  overflow: hidden;
  margin: 25px auto 10px;
  max-width: 500px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.progress-bar {
  height: 22px;
  background: linear-gradient(to right, #00ffc8, #00a0c6);
  color: #000;
  font-weight: bold;
  font-size: 0.85em;
  line-height: 22px;
  text-align: center;
  border-radius: 30px 0 0 30px;
  transition: width 0.5s ease;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.footer {
  background-color: rgba(34, 34, 34, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); /* For Safari */
  color: #fff;
  padding: 20px 40px;
  font-size: 14px;
  animation: fadeInUp 0.8s ease-in-out;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

