* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url('https://i.pinimg.com/originals/54/d7/30/54d7302c08408339574b95b9a911c51a.gif') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
}

.bio-container {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 30px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.pfp {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  margin-bottom: 20px;
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px cyan;
}
