body, html {
    margin: 0;
    padding: 0;
    background-color: darkslategray;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
	
}

.container{
margin-top: 100px;
margin-bottom: 150px;
}

.centered-buttons {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h1, h1, h2 {
    font-size: 1.4rem;
}


/* Estilos do botão */
.btn-drex {
    color: black;
    background-color: #0ffd80;
    border-color: #0ffd80;
    padding: 12px 25px; /* Maior espaçamento no botão */
    font-size: 1.1em; /* Tamanho maior de fonte no botão */
    transition: background-color 0.3s ease; /* Efeito visual ao passar o mouse */
}

.btn-drex:hover {
    background-color: #0ebf66; /* Cor de fundo ao passar o mouse */
}

/* Icones */
.button-icon-wallet,
.button-icon-drex {
    width: 20px;
    margin-right: 10px; /* Espaçamento entre o ícone e o texto */
}

/* Estilos do rodapé */
footer {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    font-size: 14px;
    padding: 5px;
}

/* Estilo para textos verdes */
.text-green-hoot {
    color: #0ffd80;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Fonte menor em telas pequenas */
    }


    .btn-drex {
        padding: 10px 20px; /* Menos espaçamento no botão */
        font-size: 1em; /* Fonte menor no botão */
        width: 100%; /* Botão ocupa toda a largura no mobile */
        box-sizing: border-box; /* Garantir que o botão ocupe toda a largura */
    }

    footer {
	
        font-size: 12px; /* Texto menor no rodapé */
        padding: 10px; /* Mais padding no rodapé */
    }

    .button-icon-wallet,
    .button-icon-drex {
        width: 18px; /* Icones um pouco menores no mobile */
    }
}
