
@import url('https://fonts.googleapis.com/css2?family=VT323&family=Poppins:wght@400&display=swap');

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000000;
  color: #fffdff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  padding: 1rem;
}

/* Links */
a {
  color: #60ccef;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.navbar ul {
  display: flex;
  list-style: none;
}
.navbar li {
  margin: 0 1rem;
}
.navbar a:hover {
  color: #ff8f70;
}

/* Header */
header {
  margin-top: 4rem; /* Ensure sufficient space below navbar */
  text-align: center;
}
header h1 {
  font-family: 'VT323', monospace;
  color: #ff8f70;
  font-size: 2.5rem;
}

/* Workout Cards */
.card {
  border: 2px solid #60ccef;
  padding: 1rem;
  margin: 1rem auto;
  border-radius: 8px;
  max-width: 600px;
  background: #1a1a1a;
}
.card h2 {
  color: #ff8f70;
}
.card p {
  margin: 0.5rem 0;
}
.card a {
  color: #60ccef;
}

/* FAQ Sections */
section {
  margin: 2rem auto; /* Add spacing between each question */
  padding: 1rem;
  border: 1px solid #60ccef; /* Add a border to separate sections */
  border-radius: 8px; /* Rounded corners for a polished look */
  background-color: #1a1a1a; /* Slightly different background for emphasis */
  max-width: 800px; /* Optional: Limit width for readability */
}

section h2 {
  color: #ff8f70; /* Make the question title stand out */
  margin-bottom: 0.5rem;
}

section p {
  margin-top: 0.5rem;
  line-height: 1.8;
}

/* Optional hover effect for FAQ sections */
section:hover {
  background-color: #2a2a2a; /* Highlight the section on hover */
  border-color: #ff8f70; /* Subtle border color change on hover */
}

