* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* border: 1px solid red; */
}

body {
  /* background: url(./images/pexels-rafael-guajardo-604684.jpg) repeat center */
  /* center fixed; */
  background-size: cover;
  font-family: 'Roboto', sans-serif;
  min-height: 100vh;
}

#vanta {
  position: absolute;
  width: 100%;
  height: 100vh;
}

header {
  margin-top: 1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

header > img {
  width: 8em;
  height: 8em;
  border-radius: 100%;
  border: 2px solid #f1692b;
  box-shadow: #f1692b 0px 2px 8px 0px;
  box-shadow: 1px 1px #f1692b, -0.1em 0 0.4em #f1692b;
}

header > h1 {
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  border-radius: 1em;
  color: #f1692b; /* TODO: Match the colors with the backrgound picture */
  background-color: #0e0613;
  margin-top: 10px;
  padding: 0.3em 0.6em;
  border: 1px solid #f1692b;
  backdrop-filter: blur(10px) saturate(120%) contrast(130%);
}

header > h2 {
  display: inline-block;
  font-size: 0.8em;
  font-weight: lighter;
  border-radius: 1em;
  color: #f1692b; /* TODO: Match the colors with the backrgound picture */
  background-color: #0e0613;
  margin-top: 6px;
  padding: 0.15em 1.1em;
  border: 1px solid #f1692b;
  backdrop-filter: blur(10px) saturate(120%) contrast(130%);
}

ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  padding: 2em;
}

ul > li {
  max-width: 380px;
  background-color: hsla(19, 88%, 56%, 0.8);
  backdrop-filter: blur(10px) saturate(120%) contrast(130%);
  border-radius: 10em;
  padding: 0.7em 4em;
  margin: 0.9em 0;
}

ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
}

a {
  color: white;
  font-size: 1.1em;
  text-decoration: none;
}

footer {
  position: sticky;
  top: 100%;
  margin-bottom: 0;
}

footer > p {
  text-align: center;
  font-size: 0.7rem;
  margin: 12px 0px;
  /* display: flex;
  justify-content: center;
  align-items: flex-end; */
  color: white;
  background-color: #0e0613;
  padding: 0.3em 0.6em;
  /* border: 1px solid #f1692b; */
  backdrop-filter: blur(10px) saturate(120%) contrast(130%);
}
