/*The start of the motivational part of the webpage...*/
/*
body {
	background: url('Wolf.jpg')  center fixed;
	background-size: cover;
  }
  
  #motivation {		/*Top container Motivation_1 rect*/
	/*
	text-align: center;
	margin-top: 50px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  #motivation h2 {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  }
  
  #container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  #buttons {
	text-align: center;
	margin-bottom: 20px;
  }
  
  #workout-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
  }
  
  #workout-description ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
  }
  
  #workout-description li {
	margin-bottom: 20px;
  }
  
  .video-title {
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
	text-align: center;
  } */
  
  /* Additional CSS for motivational quote and background image */
  /*
  #motivation {
	text-align: center;
	margin-top: 50px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  #motivation h2 {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  }*/

						/* New Implementation */













/*The start of the motivational part of the webpage...*/
body {
	background: url('Discipline.jpg')  center fixed;
	background-size: cover;
}

#motivation {		/*Top container Motivation_1 rect*/
	text-align: center;
	margin-top: 50px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#motivation h2 {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

#container {
	/* max-width: 800px;
	margin: 0 auto; */


	text-align: center;
	margin-top: 0px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}





#buttons {
	text-align: center;
	margin-bottom: 20px;
}

#workout-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

#workout-description ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#workout-description li {
	margin-bottom: 20px;
}

.video-title {
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
	text-align: center;
}

/* Additional CSS for motivational quote and background image */
#motivation {
	text-align: center;
	margin-top: 50px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#motivation h2 {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

/* Additional CSS for buttons */
#buttons button {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color:	rgb(0, 0, 0);/* #2196F3;*/
	border: none;
	border-radius: 50px;
	padding: 15px 40px;
	margin: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  
  #buttons button:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  #buttons button:active {
	transform: translateY(0);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  #upperBodyButton {
	background-color: #FF9800;
  }
  
  #lowerBodyButton {
	background-color: #4CAF50;
  }
  
  #wholeBodyButton {
	background-color: #9C27B0;
  }
  
  #buttons button:focus {
	outline: none;
  }
  




		/* Anchor tag. Put under the headder.*/
		/* Same color as the other buttons*/
  
/* #back-home-button {
	display: inline-block;
	padding: 10px 30px;
	margin-top: 20px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background-color: #eb4d4b;
	border: 2px solid #eb4d4b;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	transition: all 0.2s ease-in-out;
}
  
#back-home-button:hover {
	background-color: #fff;
	color: #eb4d4b;
}
   */

.back-to-home {
	display: inline-block;
	padding: 10px 20px;
	background-color: rgb(0, 0, 0);
	border: none;
	border-radius: 5px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	margin-top: 20px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}
  
.back-to-home:hover {
	background-color: #fff;
	color: rgb(0, 0, 0);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
} 


/* Footer */
/* footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #1a1a1a;
	color: white;
	text-align: center;
	padding: 5px;
  }
  
  footer a {
	color: white;
	text-decoration: none;
  }
  
  footer a:hover {
	text-decoration: underline;
  }
   */


/* 
#footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 10px;
	font-size: 16px;
}
  
#footer .left {
	float: left;
}
  
#footer .right {
	float: right;
}
*/




/* CSS for the footer */

/* #footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: -10px;
    background-color: #1a1a1a;
    color: #fff;
}
*/

footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	background: linear-gradient(to bottom, transparent 1%, black 100%);
	text-align: center;
	color: #fff;
	padding: 0px;
}