@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
body {
  font-family: 'Orbitron', monospace;
  background-color: black;
  color: white;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  position: relative;
  text-align: center;
}

.logo {
  position: absolute;
  top: 0;
  left: -300px;
  border: 2px solid #00ff00;
  width: 250px;
  height:250px;
  display: block;
  animation: glow 2s infinite;
}

.title {
  text-transform: uppercase;
  font-size: 24px;
  margin-top: 10px;
}

.subtitle {
  font-size: 18px;
}

.content {
  margin-top: 100px;
  padding-top: 20px; /* Add padding to push the content down */
}

.info h3,
.crimes h3,
.status h3,
.employment h3 {
  margin-top: 0;
}

.info p,
.crimes ul,
.status p,
.employment p {
  margin: 0;
}

.crimes ul {
  list-style-type: none;
  padding-left: 20px;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
  }
  50% {
    box-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00;
  }
  100% {
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
  }
}
