
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Josefin Sans', serif;
}

.nav-link{
  color: white;
  transition: all 0.3s;
}

.nav-link:hover {
  color: limegreen;

}

 .nav-link.active {
  color: lime !important;
  font-weight: 600;
}


.background_img {
  background-image: url(../images/Gym_background.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position:relative;
  /* filter: blur(1px); */
  z-index: 1;
  padding: 9rem 1rem;
}

.background_img::after{
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index:2;
}

.text-section {
  position: relative;
  z-index: 3;
  top: 30%; 
}

.text-section h1 {
  font-size: 4rem;
  color: white;
}

.card i {
  background-color: rgba(0, 255, 0, 0.1);
  color: lime;
  width: 90px;
  height: 90px;
  border-radius: 50%;

}

h5 {
  font-size: 18px;
}

h2 {
  font-size: 25px;
}