@import url(global.css);

img{
    max-width: 400px;
}

#sem-acesso {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conjunto_botoes {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

button {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 0 0 10px 0;
    width: 250px;
    height: 100%;
    margin: 0.3rem;
    border: 2px solid red;
    border-radius: 5px;
    background-color: black;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    }

button:hover {
    background-color: rgb(122, 122, 122);
    color: white;
    transform: translateY(-2px); /* Eleva ligeiramente o botão */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Adiciona sombra para efeito de elevação */
}

button:active {
    transform: translateY(1px); /* Simula o botão sendo pressionado */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Reduz a sombra para efeito de pressionamento */
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media(max-width: 992px) {
    .content {
        margin: 1rem;
    }
    #sem-acesso {
        text-align: center;
    }
    img{
        max-width: 350px;
    }
}