@import url('https://fonts.googleapis.com/css?family=Titillium+Web&display=swap');
/*
font-family: 'Titillium Web', sans-serif;
*/

*{
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

h2 {
   border-bottom: unset;
   color: unset;
   font-size: unset;
   height: unset;
   margin: unset;
   padding: unset;
   text-transform: unset;
   width: unset;
}

.gdlotto{
  height: 600px;
  width:1050px;
  margin:0 auto;
  display:flex;
  padding:50px 0;
  font-family: 'Titillium Web', sans-serif;
}


.gd_header{
  display:flex;
  flex-direction: column;
  align-items: center;
}

.gd_logo{
  width:400px;
  filter:drop-shadow(1px 1px 1px black);
}

.gd_date{
  color:white;
  font-size: 40px;
  border-bottom:solid 2px white;
}

.gd_col{
  width:50%;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  padding:0 40px;
  height:100%;
}

.gd_dragon{
  width:300px;
  align-self: center;
  margin-left: -150px;
  z-index: 2;
}

.col_left{
  z-index: 3;
}

.col_right{
  z-index: 1;
  margin-left:-80px;
}

.gd_btns{
  display:flex;
  align-items: center;
  justify-content: center;
  width:100%;
}

.gd_btn{
  background: url('../../img/gd_btn.png');
  background-size: 100% 100%;
  width:170px;
  text-align: center;
  padding:25px 0;
  font-size: 20px;
  margin:10px;
  color:black;
  font-weight:bold;
  cursor:pointer;
  transition:0.2s;
}

.gd_btn:hover{
  transform:translateY(-5px);
  color:#960f11;
}

.gd_table{
  background-color:rgb(10,10,10);
  background-image: url('../../img/gd_frame.png');
  background-size: 100% 100%;
  height:220px;
  border-radius: 25px;
  padding:20px;
}

.gd_table table{
  width:100%;
  text-align: center;
  height:100%;
  color:white;
  border-collapse: collapse;
}

.gd_table th{
  font-size: 20px;
  border-bottom:solid 2px #c16728;
  height:50px;
}

.gd_table td{
  font-size: 15px;
}

/*-------------------Payout Table-----------------------------*/

.gd_popup{
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background: rgba(200,200,200,0.2);
  z-index: 999;
  display:none;
  font-family: 'Titillium Web', sans-serif;
  color: black;
}

.gd_window{
  background: #e8eff5;
  width:700px;
  margin:auto;
  padding:30px 40px;
  height:96%;
  overflow-y: auto;
  position:relative;
  top:2%;
}

.gd_close{
  position:absolute;
  left:10px;
  top:5px;
  font-size: 15px;
  margin:0;
  padding:0;
  color:#95979c;
  cursor:pointer;
}

.gd_close:hover{
  color:black;
}

.gd_window h2{
  margin:0;
  font-size: 20px;
  text-align: center;
}

.gd_window p{
  margin:5px 0;
  font-size: 14px;
  text-align: center;
}

.gd_window table{
  width:100%;
  text-align: center;
  border-collapse: collapse;
  box-shadow: 1px 1px 3px grey;
  margin-bottom: 50px;
}

.gd_window th{
  background: #4CAF50;
}

.gd_window tr{
  background: #f0f4f7;
}

.gd_window tr:nth-child(even){
  background: white;
}
