:root {
  --h1-color: #ff0000;
  --text-color: #f5f5f5;
  --bg-color: #0d0d0d;
}

* {
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
}

.links li {
  margin-bottom: 10px;
}

.links a {
  text-decoration: none;
  color: var(--h1-color)
}
