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

body {
    font-family: 'JetBrains Mono', monospace;
    background-color: #fafafa;
    color: #000;
    line-height: 1.6;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}

.intro {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #666;
}

h2 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

ul {
    list-style: none;
    padding-left: 20px;
}

li {
    margin-bottom: 0.5rem;
    position: relative;
}

li:before {
    content: "• ";
    position: absolute;
    left: -15px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.project-link {
    color: #666;
    font-size: 0.9rem;
    margin-left: 10px;
}

@media (max-width: 600px) {
    body {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 3px;
  border-radius: 50%;
  background: #ccc;
}
.filled {
  background: #666666;
}
.bar {
  background: #eee;
  height: 8px;
  border-radius: 5px;
  width: 200px;
  margin-top: 4px;
}
.level {
  background: #4cafef;
  height: 100%;
  border-radius: 5px;
}
hr {
    border: none;
    border-top: 1px solid #666666;
    margin-top: 60px;
    margin-bottom: 5px;
}
.skills .tags span {
  display: inline-block;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 4px 10px;
  margin: 4px;
  font-size: 0.9rem;
}
.skills .tags span:hover {
  background: #e0e0e0;
  cursor: pointer;
}