html {
  font-family: "Arial", Times, serif;
  unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  color: #FFF6FD;
  paint-order: stroke fill;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: black;
}
header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header > img {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  border: 4px solid #1B1B1B;
  box-shadow: 0px 0px 1px #fff;
  object-fit: cover;
}
h2 {
  display: inline-block;
  font-size: 1em;
  border-radius: 0.7em;
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.3em 0.6em;
  border: 1px solid #fff;
  backdrop-filter: blur(10px) saturate(160%) contrast(80%);
  box-shadow: 0px 0px 1px 1px #1B1B1B;
  margin-bottom: 3em;
}

h1 {
  margin-top: 1.6em;
  display: inline-block;
  font-size: 1em;
  border-radius: 0.7em;
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 3px 5px;
  border: 1px solid #fff;
  backdrop-filter: blur(5px) saturate(160%) contrast(80%);
  box-shadow: 0px 0px 1px 1px #1B1B1B;
}
.ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  list-style: none;
  margin: -0.6em auto;
  padding: 0.5em;
  max-width: 400px;
  gap: 20px;
}
.ulli {
  font-weight: bold;
  border-radius: 0.7em;
  color: #fff;
  padding: 0em 0.3em;
  border: 1px solid #fff;
  backdrop-filter: blur(5px) saturate(160%) contrast(80%);
  box-shadow: 0px 0px 1px 1px #1B1B1B;
  background-color: rgba(255, 255, 255, 0.5);
}
.jump {
  transition: transform 0.2s; /* Optional: smooth hover effect */
}
.jump:hover {
  transform: scale(1.1); /* Makes it pop when hovered */
}
.ulliaimg {
  margin-right: 10px;
}
.ullia {
  color: #fff;
  font-size: 1em;
}
.social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 5px;
}
a, a:link, a:visited {
  text-decoration: none;
}
