
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 55%;
}

@media (max-width: 1200px) {
    .button-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 70%;
    }
}

@media (max-width: 1000px) {
    .button-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 80%;
    }
}



/*  Todos os botos individuais */
.button-container-button  {
    
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 40%;

    text-align: center;  
    height: 50%;
    font-size: 50vmin;
    
    border: none;
    border-radius: 10px;

    display: flex;
    flex-basis: calc(45% - 10px);
    justify-content: center;
    flex-direction: column;

    margin: 20px auto;
    margin-inline: 20px;
  
    height: 40vh;

}

@media (max-width: 800px) {
    .button-container-button {
        flex: 0 0 100%; /* Make buttons take full width on small screens */
        min-width: 300px;
    }
    body {
        height: 100vh;
    }
}

/* Cada botao tem sua imagem background e hover event */
.button-container a  {
    text-decoration: none;
}



.button-container a#brRankingButton  {
    background: rgb(49, 49, 49) url(./images/goldingot.png) 10px 10px no-repeat;
    background-position: bottom;
    background-size: 50%;
    
}
.button-container a#brRankingButton:hover  {
    background-color: rgb(104, 104, 104);

}



.button-container a#estadosRankingButton  {
    background: rgb(49, 49, 49) url(./images/estados.png) 10px 10px no-repeat;
    background-position: bottom;
    background-size: 35%;
}
.button-container a#estadosRankingButton:hover  {
    background-color: rgb(104, 104, 104);

}



.button-container a#rankedRankingButton  {
    background: rgb(49, 49, 49) url(./images/ranked.png) 10px 10px no-repeat;
    background-position: bottom;
    background-size: 50%;
}
.button-container a#rankedRankingButton:hover  {
    background-color: rgb(104, 104, 104);

}



.button-container a#recursosButton  {
    background: rgb(49, 49, 49) url(./images/recursos.png) 10px 10px no-repeat;
    background-position: bottom;
    background-size: 40%;
    
}
.button-container a#recursosButton:hover  {
    background-color: rgb(104, 104, 104);

}



/* texto do botao */

/* texto do botao */
.button-text {
    font-size: calc(30px + 0.390625vw);
    font-weight: bold;
    padding-bottom: 120px;
    color: rgb(255, 255, 255);
    text-align: center;
    align-self: center;
}



.grid-item h3 {
  font-size: 30px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.center-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Use min-height instead of height */
    
}

a {
    -webkit-user-drag: none;
}

button {
  user-select: none;
}