*{
    margin: 0;
    padding: 0;
}

/*Custome ScroolBar*/
::-webkit-scrollbar {
    width: 4px;
  }
  
  /* Track */
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  /* End Here */

body{
    background: linear-gradient(to bottom, #000000, #920000);
    color: white;
}

.container-header{
width: 100%;
background: linear-gradient(to bottom, #920000, #000000);
}

.container-header .header{
  text-align: center;
}

.navbar-container{
  text-align: center;
  padding: 10px 0px;
}

.navbar-container a{
  font-weight: bolder;
  text-decoration: none;
  color: white;
  margin: 0px 8px;
}

.margin-center{
    margin: 20px 20%;
}

.container-body{
  margin: 20px 0px;
}

.logo{
  width: 500px;
  height: 150px;
}

.flex{
    display: flex;
    text-align: center;
}

.flex .flex-container{
    width: 100%;
    padding: 10px;
  }

.box-container{
  background: linear-gradient(to bottom, #ff5454, #6e0000);
  border-radius: 10px;
  font-weight: bolder;
  border: 1px solid white;
}

.box-container .box-header{
  padding: 10px 0px;
  font-size: 22px;
  border-bottom: 2px solid white;
}

.container-number{
  margin: 10px 0px;
}

.timer{
  padding: 30px 0px;
  font-size: 22px;
}

.lucky-table{
  width: 100%;
}

.lucky-table tr td{
  padding: 20px 0px;
  font-size: 22px;
  font-weight: bolder;
}

.anim{
  animation: neon 3s alternate infinite;
}

@keyframes neon{
  0%{
    box-shadow: 0px 0px 10px 2px black;
  }
  25%{
    box-shadow: 0px 0px 10px 2px rgb(0, 225, 255);
  }
  50%{
    box-shadow: 0px 0px 10px 2px rgb(229, 255, 0);
  }
  75%{
    box-shadow: 0px 0px 10px 2px rgb(147, 255, 147)
  }
  100%{
    box-shadow: 0px 0px 10px 2px white;
  }
}

.bola{
  background: linear-gradient(to bottom, #00d9ff, #007185);
  padding: 15px 21px;
  border-radius: 50%;
  box-shadow: 0px 0px 6px 2px black;
}
.container-center{
  text-align: center;
  margin: 0px 10px;
}

.container-table-second{
  margin: 20px 10px;
}

.second-table{
  width: 100%;
  font-weight: bolder;
  text-align: center;
  box-shadow: 0px 0px 6px 2px rgb(0, 0, 0);
}

.second-table td{
  padding: 20px 5px;
}

.second-table tr:nth-child(even){
  background: #6e0000;
}

.second-table tr:nth-child(odd){
  background: #920000;
}

.full{
  width: 100%;
  box-shadow: 0px 0px 6px 2px black;
  border-radius: 10px;
  border: 1px solid white;
}
.copyright{
  margin: 20px 0px;
  text-align: center;
  font-weight: bolder;
}

.slider{
  border-radius: 10px;
  overflow: hidden;
}

.slides{
  width: 500%;
  display: flex;
  text-align: center;
}

.slides input{
  display: none;
}

.slide{
  width: 20%;
  transition: 2s;
}

/* CSS for manual carousel */

.center{
  text-align: center;
}

.navigation-manual{
  position: absolute;
  display: flex;
  margin-top: -2.32%;
  margin-left: 31%;
  text-align: center;
  justify-content: center;
}

.banner{
  width: 99%;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 10px;
}

.manual-btn{
  border: 2px solid #82ff93;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
  display: none;
}

.manual-btn:not(:last-child){
  margin-right: 40px;
}

.manual-btn:hover{
  background: #82ff93;
}

#radio1:checked ~ .first{
  margin-left: 0;
}

#radio2:checked ~ .first{
  margin-left: -20%;
}
#radio3:checked ~ .first{
  margin-left: -40%;
}


/* CSS Navigation auto */

.navigation-auto{
  position: absolute;
  display: flex;
  justify-content: center;
  margin-top: 35%;
  margin-left: 31%;
  display: none;
}

.navigation-auto div{
  border: 2px solid #82ff93;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.navigation-auto div:not(:last-child){
  margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
  background: #82ff93;
}
#radio2:checked ~ .navigation-auto .auto-btn2{
  background: #82ff93;
}
#radio3:checked ~ .navigation-auto .auto-btn2{
  background: #82ff93;
}

.date-container{
  padding: 10px 0px;
  font-size: 18px;
}

.container-table-history{
  text-align: center;
  margin: 20px 10px;
}

.tabs{
  max-height: 500px;
  overflow: auto;
  box-shadow: 0px 0px 6px 2px black;
}

.table-history{
  width: 100%;
  border-spacing: 0;
}
.table-history thead th{
  padding: 20px 0px;
  background: linear-gradient(to bottom, #920000, #000000);
  top: 0;
  position: sticky;
}

.table-history td{
  padding: 12px 0px;
}

.table-history tr:nth-child(even){
  background: #6e0000;
}

.table-history tr:nth-child(odd){
  background: #920000;
}

.container-article{
  margin: 20px 10px;
  background: #350000;
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px;
}

.container-article .article{
  padding: 10px;
  border-radius: 10px;
  border: 1px solid white;
  background: black;
}

.article h1{
  text-align: center;
}

.article p{
  margin: 12px;
  text-align: justify;
}
.container-footer{
  margin: 20px 10px;
}
@media screen and (max-width:500px) {
    .logo{
      width: 320px;
      height: 100px;
    }
    .bola{
      font-size: 18px;
      padding: 8px 15px;
    }
}

@media screen and (max-width:400px) {
  .box-container .box-header{
    font-size: 18px;
  }
  .timer{
    font-size: 18px;
    padding: 12px 0px;
  }
  
}