body {
    background-color: #442d1c;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

table {
    width:100%;
    border-collapse: collapse; /* Combina as bordas */
    margin-bottom: 20px; /* Espaçamento abaixo da tabela */
}

th, td {
    border: 1px solid #84592b; /* Borda para células */
    padding: 6px; /* Espaçamento interno nas células */
    text-align: center; /* Alinhamento do texto */
}

th {
    background-color: #000000; /* Cor de fundo para cabeçalho */
    font-weight: bold;
}

tr:nth-child(even) {/*odd*/
    background-color: #84592b; /* Cores alternadas para linhas */
    color: #ffffff;
    font-weight: bold;
}

tr:hover {
    background-color: #c4bab3; /* Cor ao passar o mouse */
    }

h1 {
    color: #000000;
    font-size: 3em;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: center; 
}
    
h2 {
    color: #000000;
    font-size: 1em;
    margin-bottom: 8px;
    text-align: center; 

}
    
h3 {
    color: #000000;
    font-size: 1em;
    margin-bottom: 8px;
    text-align: center; 

}
    
p {
    color: #000000;
    font-size: 1.1em;
    text-align: center; 

}

.container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #e8d1a7;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;

}

  .box {
            width: 200px;
            height: 200px;
            background-color: #4CAF50;
            color: #9d9167;
            font-size: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .box:nth-child(2) {
            background-color: #2196F3;
        }

        .box:nth-child(3) {
            background-color: #FF5722;
        }     
        .list-group-item {
            background-color: #84592b; /* List item background blue */
            border-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            margin-bottom: 0.5rem;
            border-radius: 0.25rem;
            transition: background-color 0.2s, transform 0.2s;
            list-style-type:none;
            font-weight: bold;
            text-align: center;
        }

        .list-group-item:hover {
            background-color: #84592b; /* Darker blue on hover */
            transform: translateY(-2px); /* Efeito sutil de levantar */
            color: #c4bab3;
        }

        .list-group-item a {
            color: inherit; /* Herda a cor do texto do pai */
            text-decoration: none; /* Remove sublinhado dos links */
            display: block; /* Faz o link ocupar todo o espaço do item */
            padding: 0.75rem 1.25rem; /* Padding para o link dentro do item */
        }

        .list-group-item i {
            margin-right: 10px;
        }   




  

  
  
  