
body {
    background-color: #313131;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    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: white;
            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: #85e9b2;
        }

        .box:nth-child(3) {
            background-color: #527942;
        }        

h1 {
    color: #333;
    font-size: 3em;
    margin-bottom: 8px;
}

h2 {
    color: #333;
    font-size: 1em;
    margin-bottom: 8px;
}

h3 {
    color: #333;
    font-size: 1em;
    margin-bottom: 8px;
}

p {
    color: #666;
    font-size: 1.1em;
}

table {
 width:100%;
    border-collapse: collapse; /* Combina as bordas */
    margin-bottom: 20px; /* Espaçamento abaixo da tabela */

}
 th, td {
    border: 1px solid hsl(0, 0%, 0%); /* Borda para células */
    padding: 6px; /* Espaçamento interno nas células */
    text-align: center; /* Alinhamento do texto */
  }
  th {
    background-color: #923636; /* Cor de fundo para cabeçalho */
  }
  tr:nth-child(even) {
    background-color: #922a2a; /* Cores alternadas para linhas */
  }
  tr:hover {
    background-color: #7c7c7c; /* Cor ao passar o mouse */
  }
  

  
  
  