:root {
  --highlight-color: rgba(240, 240, 240, 1);
  --primary-color: rgba(240, 240, 240, 0.9);
  --secondary-color: rgba(170, 170, 170, 0.6);
  --tertiary-color: rgba(150, 150, 150, 0.6);
  --background-color: rgba(30, 30, 30, 1);
  --default-font: "Kumbh Sans", system-ui;
}

html {
  font-size: 100%;
  background-color: var(--background-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  height: 50%;
  color: var(--primary-color);
  font-family: var(--default-font);
  text-shadow: 0px 0px 5px var(--tertiary-color);
  margin: 5vw;
  max-width: 600px;
}

.background {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
}

ul {
  list-style-type: circle;
  list-style-position: inside;
  padding-left: 0px;
}

li {
  margin-top: 1vw;
}

a {
  text-decoration: none;
  color: var(--highlight-color);
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: white;
}

.home-icons {
  font-size: 200%;
}

.smaller {
  font-size: 90%;
}

.picture {
  width: 150px;
  height: 150px;
  border-radius: 35px;
  vertical-align: middle;
  margin-right: 10px;
}
