body , html{
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.navBar{
  width: 100%;
  background-color: rgb(21, 32, 43);
  display: flex;
  justify-content: center;
  align-items: center;
}
.Home{
  flex-grow: 5;
  justify-content: flex-start;
}
nav .logo{
  padding: 10px 20px;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
}
.navList{
  margin-left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px;
}
.navBar li {
  font-size: 1.1rem;
  list-style-type: none;
  white-space: nowrap;
  padding: 0 25px;
}
li a{
  text-decoration: none;
  color: white;
}
@media (max-width: 768px) /*position at new line when minimize*/ {
  .topBar {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the start */
  }


/* Img slider Section*/
}
.slider{
  position: relative;
  width: 100%;
  height: 724px;
  margin: auto;
  overflow: hidden;
}
.slider img{
  width: 100%;
  display: none;
}
img.displaySlide{
  display: block;
  animation-name: fade;
  animation-duration: 2s;
  height: 724px;
}
.slider button{
  padding: 0 50px;
  position: absolute;
  top: 50%; /* position button at middle of img */
  transform: translateY(-50%); /* more middle */
  font-size: 6rem;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  cursor: pointer;
}
.next{
  right: 0; /*make button position at right*/
}
@keyframes fade{ /*Effect on displaySlide classList*/
  from {opacity: .5;} /*change current img*/
  to {opacity: 1;} /*change next img*/
}

/* Lower Home part*/
.lowerHome{
  height: 100%;
  width: 100%;
  background-color: rgb(20, 32, 43);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
}
.container , header{
  border-radius: 15px;
  overflow-wrap: break-word;
  color: white;
  font-size: 30px;
  font-weight: 500;
  font-family: 'Inter';
  text-align: center;
  padding: 20px 20px;
  margin: 10px 20px;
}
.container{
  background-color: rgb(25,39,52);
  border-radius: 15px;
}
.first{
  background-color: gold;
  overflow-wrap: break-word;
  color: white;
  font-size: 30px;
  font-weight: 500;
  font-family: 'Inter';
  text-align: center;
  padding: 20px 20px;
  border-radius: 15px;
}
.second{
  background-color: silver;
  border-radius: 15px;
  overflow-wrap: break-word;
  color: white;
  font-size: 30px;
  font-weight: 500;
  font-family: 'Inter';
  text-align: center;
  padding: 20px 20px;
}
.third{
  background-color: brown;
  border-radius: 15px;
  overflow-wrap: break-word;
  color: white;
  font-size: 30px;
  font-weight: 500;
  font-family: 'Inter';
  text-align: center;
  padding: 20px 20px;
}
.money{
  min-width: 450px;
  max-width: 450px;
}
.played{
  min-width: 450px;
  max-width: 450px;
}
.trending{
  min-width: 450px;
  max-width: 450px;
}
@media (max-width: 768px) /*position at new line when minimize*/ {
  .lowerHome {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the start */
  }
}