:root {
  --light-link-color: rgb(233, 50, 163);
  --dark-link-color: rgb(233, 206, 50);
}
*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
    'Helvetica Neue', sans-serif;
  background-color: #14191e;
  color: #c7c7c7;
}

body {
  align-items: center;
  display: flex;
  justify-content: center;
}

a {
  color: var(--dark-link-color);
  position: relative;
  text-decoration: none;
}

a::after {
  border-bottom: 2px solid currentColor;
  content: '';
  display: block;
  left: 0;
  padding-bottom: 2px;
  position: absolute;
  transition: all ease 0.35s;
  width: 0%;
}

a:hover::after {
  width: 100%;
}

main {
  padding-left: 5%;
  padding-right: 5%;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 0.5rem;
}

li p {
  margin: 0.5rem 0 0;
}

@media (prefers-color-scheme: dark) {
  a {
    color: var(--dark-link-color);
  }
  html {
    background-color: #14191e;
    color: #c7c7c7;
  }
}
