:root {
  --text: #d5d5d5;
  --text-hover: #ffffff;
  --text-dark: #282828;
  --text-dark-hover: #151515;
}

@view-transition {
  navigation: auto;
}

::selection {
  color: black;
  background-color: #bebebe;
}

a {
  color: var(--text);
  &:hover {
    color: var(--text-hover);
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  font-weight: normal;
  vertical-align: baseline;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.5;
  background: linear-gradient(#212f33, #0f2027);
  color: var(--text);
  min-height: 100vh;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: none;
  background: none;
  outline: none;
  font-size: inherit;
}

button:focus-visible {
  outline: 2px solid black;
}

input {
  border: none;
  outline: none;
}

input:focus-visible {
  outline: 2px solid black;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
