@font-face {
  font-family: "MinecraftSeven";
  src: url("fonts/Seven.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "MinecraftTen";
  src: url("fonts/Ten.otf") format("opentype");g
  font-weight: bold;
  font-style: normal;
}

/* Reset & Base */
body {
  margin: 0;
  padding: 0;
  font-family: "MinecraftSeven", sans-serif;
  background-color: #121212;
  color: #e0e0e0;
}

h1, h2 {
  margin: 0.5em 0;
  text-align: center;
  font-family: "MinecraftTen", sans-serif;
}

h1 {
  font-size: 2.5em;
}

/* Profile Section */
.profile {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.avatar {
  width: 150px;
  border-radius: 8px;
  flex-shrink: 0;
}

.bio {
  max-width: 600px;
}

.bio p {
  margin: 0.3em 0;
  line-height: 1.5;
}

/* GitHub Stats */
.github-stats {
  text-align: center;
  padding: 20px;
}

.github-stats h2 {
  margin-bottom: 20px;
}

.github-stats .stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.github-stats .stats img {
  max-width: 90%;
  height: auto;
  border-radius: 8px;
}

/* Horizontal line */
hr {
  border: 0;
  height: 1px;
  background: #333;
  margin: 20px 0;
}

/* Responsive */
@media (min-width: 768px) {
  .github-stats .stats {
    flex-direction: row;
    justify-content: center;
  }
}
