/* Reset some default styles for common elements */
body, header, footer, nav, ul, li, a, p, button {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* Global styles for the entire page */
body {
  font-family: Arial, sans-serif;
  background-color: #222;
  color: #fff;
}

/* Header and footer styles */
header, footer {
  background-color: #111;
  padding: 10px;
}

/* Navigation menu styles */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-right: 10px;
}

nav ul li a {
  color: #fff;
}

/* Section styles */
section {
  padding: 20px;
  background-color: #333;
  margin: 20px;
}

section h2 {
  color: #ff6600;
  font-size: 24px;
}

section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

section ul li {
  margin-bottom: 10px;
}

/* Footer styles */
footer {
  text-align: center;
}

/* Timer element styles */
#timer {
  text-align: center;
  font-size: 24px;
  color: #ff6600;
  margin: 20px;
}

/* Cookie Consent Banner styles */
#cookieConsentBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111;
  color: #fff;
  padding: 10px;
  text-align: center;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
}

#cookieConsentBanner p {
  margin: 0;
  font-size: 16px;
}

#cookieConsentBanner button {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin: 10px;
  cursor: pointer;
  font-size: 16px;
}

#cookieConsentBanner button:hover {
  background-color: #ff5500;
}

/* Learn More link styles */
#learnMore {
  position: relative;
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
  margin-left: 10px;
}

/* Tooltip styles */
.tooltip {
  display: none;
  position: absolute;
  bottom: 100%; /* Place it above the link */
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  white-space: nowrap;
}

#learnMore:hover .tooltip {
  display: block;
}

/* Animation keyframes */
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}

/* Apply animation to elements with the .rotate-scale-up class */
.rotate-scale-up {
  animation: rotate-scale-up 420ms linear both;
}

/* Navigation menu styles */
nav {
  background-color: #333;
  padding: 10px 0;
  text-align: center;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav ul li a {
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

/* Change link color on hover */
nav ul li a:hover {
  color: #ff6600;
}

/* Button styles */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6600;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Change button background color on hover */
.button:hover {
  background-color: #ff5500;
}

/* Apply 'Roboto' font to the entire body */
body {
  font-family: 'Roboto', sans-serif;
}
