body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 30%, #5b0000 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, #7a0000 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, #4a0000 0%, transparent 35%),
    #000000;
  color: red;
  font-family: 'Nosifer', cursive;
}

.container {
  text-align: center;
  padding: 40px;
}

h1 {
  font-size: 64px;
  margin-bottom: 20px;
  text-shadow:
    0 0 5px red,
    0 0 15px red,
    0 0 30px #ff0000;
}

.bio {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #ff2b2b;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.images img {
  width: 280px;
  border: 2px solid red;
  box-shadow:
    0 0 10px red,
    0 0 25px #ff0000;
}