:root {
  --primary: #ff6f61;
  --secondary: #4a90e2;
  --bg-dark: #242446;
  --text-silver: #949494;
  --text-light: #f0f0f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Helvetica Neue', sans-serif;
  background: var(--bg-dark);
  color: var(--text-silver);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
 