:root {
  color-scheme: light dark;
  --bg: #121212;
  --fg: #f2f2f2;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121212;
    --fg: #f2f2f2;
  }
}
html, body {
  background: transparent;
  color: var(--fg);
  height: 100%;
  margin: 0;
}
ul {
  margin-left: 25px;
  margin-right: 25px;
}
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/moon-df505bc4.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
p {
  display: block;
  width: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 10px;
  margin-right: 10px;
  text-align: justify;
}
h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 2px;
  border-top: 0px;
  border-bottom: 1.5px solid red;
  display: inline-block;
}
.tab {
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
  justify-content: left;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.tablinks {
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.tablinks:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.tablinks.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--fg);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
hr {
  background: #666;
  height: 1.5px;
  border-top: 0px;
  border-bottom: 0px;
  padding-bottom: 0px;
}
.greet {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.profile {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  filter: brightness(1.1);
}
.about-me {
}
.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 10px auto;
}
.hello {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  display: block;
}
.wave {
  display: inline-block;
}
.news {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px;
  color: var(--fg);
}
.news h2 {
  font-size: 1.8rem;
  border-bottom: 1.5px solid red;
  padding-bottom: 2px;
}
.news ul {
  padding-left: 0;
}
.news li {
}
.home {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin: 5px;
}
.left-pane {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30%;
}
.right-pane {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
