:root {
  --bg-color: #ffffff;
  --text-color: #444444;
  --header-color: #000000;
}

[data-theme="dark"] {
  --bg-color: #1a1a1a;
  --text-color: #e0e0e0;
  --header-color: #ffffff;
}

/* 2. Aplicação das Cores */
body {
    margin: 40px auto;
    max-width: 650px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    font-size: 18px;
    padding: 0 10px;
    /* Aqui está a mágica: */
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

header h1::before {
    content: ''; /* Add content before the heading */
    display: inline-block;
    width: 32px; /* Adjust the width of the icon */
    height: 32px; /* Adjust the height of the icon */
    background: url('https://cdn-icons-png.flaticon.com/512/1778/1778568.png') no-repeat; /* Use the favicon as background */
    background-size: cover; /* Cover the entire icon area */
}

header h1::after {
    content: ''; /* Add content before the heading */
    display: inline-block;
    width: 32px; /* Adjust the width of the icon */
    height: 32px; /* Adjust the height of the icon */
    background: url('https://cdn-icons-png.flaticon.com/512/1778/1778568.png') no-repeat; /* Use the favicon as background */
    background-size: cover; /* Cover the entire icon area */
}

.row {
  display: flex;
}

.column {
  flex: 50%;
}