@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

:root {
  --background-color: #1B1C1E;
  --color-main: rgb(255, 255, 255);
  --color-secondary: #3cff00;
  --color-accent: rgb(2, 119, 27);
  --font-family: 'Righteous', cursive;
}

*, *::before, *::after {
  padding: 0;
  margin: 0;
}

html{
  background-color: var(--background-color);
  font-family: var(--font-family);
  color: var(--color-main);
  text-align: center;
}

h3 {
  margin-bottom: 0.5em;
}

ul {
  width: 17rem;
}

.container {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.container.inner {
  padding-bottom: 20px;
}

header {
  position: relative;
  z-index: 1;
  width: 100%;
  top: 0;
  left: 0;
  padding: 12px;
  margin-bottom: 10px;
}

.projects {
  justify-content: center;
  align-items: center;
}

li {
  list-style: inside;
  padding: 6px;
  text-align: left;
}

li a {
  color: var(--color-secondary);
}

li a:hover {
  color: var(--color-main);
  transform: scale(1.1);
  transition: all 0.5s ease;
}

li a:visited {
  color: var(--color-accent);
  transform: scale(1.1);
  transition: all 0.5s ease;
}