
body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    background-color: #fff;
    padding: 0px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;

}

.containerdois {
    max-width: 100px;
    margin: 10px auto;
    background-color: #DEB887;
    padding: 9px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
    justify-content: center;
    align-items: center;

}

  .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: #2196F3;
        }

        .box:nth-child(3) {
            background-color: #FF5722;
        }        

h1 {
    color: #333;
    font-size: 3em;
    margin-bottom: 8px;
    text-align: center;
}

h2 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 8px;
    text-align: center;

}

h3 {
    color: #333;
    font-size: 1em;
    margin-bottom: 8px;
    text-align: center;

}

p {
    color: #666;
    font-size: 1.1em;
    text-align: center;

}

table {
 width:100%;
    border-collapse: collapse; /* Combina as bordas */
    margin-bottom: 20px; /* Espaçamento abaixo da tabela */

}
 th, td {
    border: 1px solid hsl(208, 34%, 53%); /* Borda para células */
    padding: 6px; /* Espaçamento interno nas células */
    text-align: center; /* Alinhamento do texto */
  }
  th {
    background-color: #F0E68C; /* Cor de fundo para cabeçalho */
  }
  tr:nth-child(even) {
    background-color: #FFDEAD; /* Cores alternadas para linhas */
  }
  tr:hover {
    background-color: #deb887; /* Cor ao passar o mouse */
  }
  

  
  
  