@font-face {
  font-family: "Minecraft";
  src: url("assets/fonts/minecraft.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Minecraft", sans-serif;
  background: url('assets/background.jpg') no-repeat center center/cover;
  background-size: 150%;
  transition: background-position 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  color: #fff;
}
.card {
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 30px;
  text-align: center;
  width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 2px solid rgba(255,255,255,0.5);
}
.name {
  font-size: 2.3rem;
  font-weight: 100;
  margin-bottom: 8px;
}
.bio {
  font-size: 1.0rem;
  color: #e0e0e0;
  margin-bottom: 10px;
}
.links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  transition: 0.2s;
}
.links a:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.1);
}





























