/* Reset básico de margens e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Estilos gerais para o body */
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
  }
  
  /* Estilo para todos os links */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Estilos para cabeçalhos */
  h1, h2, h3, h4, h5, h6 {
    color: rgb(202, 24, 24);
  }
  
  /* Estilo para botões */
  button {
    background-color: rgb(202, 24, 24);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: rgb(255, 60, 60);
  }
  