* {
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: circle;
}

#background {
  position: fixed;
  background-image: url('img/web-background-min.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.4);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.content {
  padding: 1em;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  max-height: 400px;
  height: 400px;
  z-index: 1;
}

body {
  font-size: 36px;
  font-weight: 200;
  color: #ffffffde;
  display: flex;
  align-items: center;
  min-height: 100vh;
  width: 100vw;
  font-family: "Roboto Mono", monospace;
  font-style: italic;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  text-transform: lowercase;
  text-shadow: 1.5px 1.5px black;
  margin: 0;
}

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

.title {
  font-weight: 500;
  text-align: center;
}

.roles a {
  font-weight: 400;
}

.roles li {
  display: flex;
}

a:hover, i:hover {
  color: orange;
}

a:active, i:active {
  color: darkorange;
}

.links {
  display: flex;
  flex-direction: row;
}

.links a {
  color: white;
  padding: 0.3em 0.15em;
  font-size: 1.2em;
}

span {
  background-color: #fca311c2;
  border-radius: 28px;
  padding: 0.4em;
  font-size: 0.5em;
  margin-right: 1em;
  color: black;
  font-weight: 500;
  width: 7.5em;
  min-width: 7.5em;
  text-align: center;
  text-shadow: none;
}

li {
  display: flex;
  align-items: center;
  margin-bottom: 0.1em;
}


@media (max-width: 900px) {
  body {
    align-items: flex-start;
    margin-top: 2em;
  }

  .roles li {
    margin-bottom: 0.5em;
    flex-direction: column;
    padding: 0.5em;
    text-align: center;
  }

  span {
    margin-bottom: 1em;
  }

  .links {
    padding: 1em;
  }
}