body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #0f172a;
  color: #e5e7eb;
}

header {
  text-align: center;
  padding: 40px;
  background: #020617;
}

.header-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.header-text {
  text-align: left;
}

.typewriter {
  display: inline-block;
  min-height: 1.2em;
}

#typewriter-text {
  color: #38bdf8;
}

.cursor {
  color: #38bdf8;
  font-weight: bold;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

section {
  padding: 30px;
  max-width: 800px;
  margin: auto;
}

h1, h2 {
  color: #38bdf8;
}

ul {
  list-style: square;
}

footer {
  text-align: center;
  padding: 20px;
  background: #020617;
  font-size: 14px;
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    align-items: center;
  }

  .header-text {
    text-align: center;
  }

  .logo {
    width: 50px;
    height: 50px;
  }
}
