body {
  background: linear-gradient(to right, rgba(255, 195, 195, 0.872), rgba(255, 21, 21, 0.562)),
    url("imgs/woman-stretch.webp"); /* Combined gradient and image */
  background-size: contain; /* Ensures the background covers the entire page */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents the background image from repeating */
  background-attachment: fixed; /* Ensures the background image stays fixed during scroll */
  background-blend-mode: overlay; /* Blends the gradient and image smoothly */
  margin: 0;
  padding: 0;
  /* height: 100%; */
  /* width: 100%; */
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
  font-family: "Rubik";
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 1200px) {
  body {
    background-size: contain; /* Adjusts background size for smaller screens */
    background-position: center;
  }
}

@media (max-width: 768px) {
  body {
    background-size: contain; /* Further adjustments for medium-sized screens */
    background-position: center;
  }
}

@media (max-width: 480px) {
  body {
    background-size: contain; /* Further adjustments for very small screens */
    background-position: center; /* Aligns background to the top for better visibility */
  }
}
.title-button {
  display: flex;
  justify-content: center;
  opacity: 0.85;
}

.title {
  /* display: block;  */
  align-items: center;
  padding: 20px 40px;
  background-color: rgb(128, 8, 8); /* Yellow background */
  color: #ffffff; /* Dark text color */
  width: 80%; /* Adjust the width as needed */
  max-width: 600px; /* Set a maximum width */
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  border-radius: 20px;
  text-align: center;
  /* transition: background-color 0.3s ease;  Smooth transition */
  width: 80%; /* Adjust the width as needed */
  max-width: 800px; /* Set a maximum width */
}

/* Main list styles */
.main-list {
  display: flex;
  flex-direction: row;
  /* opacity: .7; */
}

.main-list-child-1,
.main-list-child-2 {
  width: 50%;
  padding: 10px;
  text-align: center;
  /* opacity: .7; */
}

/* List items styles */
ul {
  list-style-type: none;
  padding: 0;
  /* opacity: .7; */
}

li {
  margin-bottom: 10px;
  opacity: 0.85;
}

a {
  display: block;
  padding: 10px 20px;
  background-color: rgb(128, 8, 8); /* Yellow background */
  color: #ffffff; /* Dark text color */
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  border-radius: 10px;
  transition: background-color 0.3s ease; /* Smooth transition */
}

a:hover {
  background-color: #ff6060d2; /* Orange background on hover */
  color: white; /* White text color on hover */
}

/* Optional: Add icons or images */
a::before {
  content: "\1F3CB"; /* Unicode emoji character (e.g., 🏋️) */
  margin-right: 10px;
  font-size: 24px;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  .main-list {
    flex-direction: column;
    align-items: center;
  }
}

.hidden {
  display: none;
}

#exercise-cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
/* Exercise card styles */
.exercise-card {
  background-color: rgb(128, 8, 8); /* Blue background */
  color: white; /* White text color */
  padding: 20px;
  margin: 10px;
  width: calc(50% - 20px); /* Adjust width for two-column layout */
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease; /* Smooth transition */
  opacity: 0.85;
}

.exercise-card:hover {
  background-color: #ff6060d2; /* Yellow background on hover */
}

.exercise-card p {
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  margin-bottom: 10px;
}

.exercise-card button {
  padding: 10px 20px;
  background-color: rgb(128, 8, 8); /* Green button */
  color: white; /* White text color */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth transition */
}

.exercise-card button:hover {
  background-color: #ff6060d2; /* Darker green on hover */
}

#reset-btn {
  padding: 20px 40px;
  background-color: rgb(128, 8, 8); /* Orange button */
  color: white; /* White text color */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth transition */
  opacity: 0.85;
  justify-self: center;
}

#reset-btn:hover {
  background-color: #ab0505; /* Darker red on hover */
}
#btn-home {
  display: block;
  padding: 10px 20px;
  background-color: rgb(128, 8, 8); /* Yellow background */
  color: #ffffff; /* Dark text color */
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  border-radius: 10px;
  transition: background-color 0.3s ease; /* Smooth transition */
}

#btn-home:hover {
  background-color: #ff6060d2; /* Orange background on hover */
  color: white; /* White text color on hover */
}
