
.header-logo img{
    max-width: 200px;
}

@media only screen and (max-width: 992px){
    .header-logo img {
        width: 150px!important;
    }

    .more-games-button img{
        width: 150px!important;
    }

    .games-button-container img{
        border-radius: 5px!important;
    }
}

html, body{
    overflow-x: hidden;
}

html {    
    position: relative;
    height: 100%;
}


body {
    height: 100%;
    background-image: url(../images/bg_menu.jpg);
    background-origin: padding-box;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: 0 0;  
}

header img{
    max-width: 100%;
    height: auto;
}
 

.games-button-container{
    margin-top: 25px;    
}

.games-button-container img{
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.5s;
    box-shadow: 0 0 10px 3px rgba(36, 36, 36, 0.534);
    border: 4px solid #ffffff;
}

.games-button-container img:hover {    
    box-shadow: 0 0 10px 3px rgba(6, 95, 212, 0);
    transform: scale(0.98);    
  }

.games-button-container .col{
    padding-top: 15px;
    padding-bottom: 15px;
}

.games-button-container .row{
    justify-content: center;
}

.more-games-button img{
    cursor: pointer;
    transition: all 0.5s;
}

.more-games-button{
    position: relative;
    bottom: 0;
}

.more-games-button img:hover {    
    box-shadow: 0 0 10px 3px rgba(6, 95, 212, 0);
    transform: scale(0.98);    
}

footer{
    position: relative;
    width: 90%;
    padding-top: 5px;
    padding-bottom: 5px;
}

footer .container{
    margin-top: 5px;
}


footer span{
    color: #ff0000;
}

.money {
    text-align: center;
    font-size: 40px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 
        -2px -2px 0 #000,  
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000;
}

 
.btn-primary{
    border-radius: 10px;
    text-transform: uppercase;
}

.btn-primary.disabled,
.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus{
    
    font-size: 22px;
    
    text-shadow: 0px 0px 3px rgba(0,0,0,1); 
    
    font-weight: bold;
    
    color: #fff;
    
    border: 2px solid #fff;
    
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2) !important;
  
    background: #e93a1e;
    background: linear-gradient(0deg, rgb(227 52 0) 0%, #e93a1e 100%);
    width: 70%;
    
     
}

.btn-primary.disabled{
	background: linear-gradient(0deg, #efefef, #7e7e7e 100%);
}


.modal {
    display: none; /* Esconde por padrão */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 300px;
    text-align: center;
  }
  