/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

/* Styles */

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: 'JetBrains Mono', monospace;
  padding: 0;
  margin: 0;
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.7;
}

h1 {
  font-weight: 700;
  font-size: 2.5rem;
  font-family: 'DM Sans', sans-serif;
  margin: 2rem 0 1rem 0;
}

section {
  margin: 0 0 2rem 0;
}

header {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin: 0;
}

header .subtitle {
  position: relative;
  z-index: 1;
}

a, a:visited {
  color: #FF8C00;
}

a:hover {
  color: #FFF;
}

.container {
  max-width: 48rem;
  padding: 0 1rem;
  width: 100%;
  margin: 0 auto;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  font-family: 'DM Sans', sans-serif;
}

.subtitle {
  font-size: 1rem;
  color: #888;
}

.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-list li {
  background: #2800d8;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-list li {
  padding: 0.25rem 0;
}

.project-list strong {
  font-size: 1.1rem;
}

hr {
  border: none;
  border-top: 1px solid #fff;
  margin: 2rem 0;
}

/* Typing effect */

.typing-active::after {
  content: '|';
  animation: blink 0.7s step-end infinite;
  color: #FF8C00;
}

@keyframes blink {
  50% { opacity: 0; }
}
