:root {
  --accent-color: #fcc41b;
  --secondary-color: #99760f;
  --primary-color: #e8d18d;
  --bg-color: #151207;
  --text-color: #f6f4ed;
  background-color: var(--bg-color);
  color: var(--accent-color);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin: 12px;
}

header,
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.list-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.list {
  flex-basis: 600px;
}
.foundations,
.js-course {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split {
  display: flex;
  justify-content: space-between;
}

.right-title {
  text-align: right;
}

a {
  background-color: var(--primary-color);
  border-radius: 12px;
  padding: 12px;
  color: var(--bg-color);
  text-decoration: none;
  font-size: 24px;
}

.footer-wrapper {
  color: var(--secondary-color);
  flex-basis: 600px;
  padding: 12px;
}
h3,
h4 {
  margin-block: 12px;
}
