body {
  background-color: rgb(29, 29, 29);
  color: rgb(230, 230, 230);
  font-family: "Cantarell", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (max-width: 600px) {
  body {
    padding-top: 40px;
  }
}

::selection {
  color: black;
  background-color: rgb(93, 216, 144);
}

.intro {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

#name {
  font-size: 300%;
  font-weight: bold;
}

#tagline {
  font-size: 120%;
  color: rgb(165, 165, 165);
}

#links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-top: 5px;
}

#shell_url {
  text-decoration: none;
  color: rgb(93, 216, 144);
}

#docs_url {
  text-decoration: none;
  color: rgb(117, 223, 255);
}

#shell_url:hover,
#docs_url:hover {
  text-decoration: underline;
}

#shell_hint {
  display: none;
  font-size: 75%;
  color: rgb(130, 130, 130);
  margin-top: 5px;
  margin-right: 40px;
}

@media screen and (max-width: 600px) {
  #shell_hint {
    display: inline;
  }
}

.description {
  text-align: start;
}

@media screen and (min-width: 60rem) {
  .description {
    max-width: 40%;
  }
}

#linkedin {
  text-decoration: none;
  margin-right: 5px;
  color: #0072b1;
}

#mail {
  font-family: "Lucida console", sans-serif;
}

ul {
  list-style: square;
}

li:hover {
  color: rgb(93, 216, 144);
  cursor: crosshair;
}

#canva {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
