body {
  background: #101010;
  color: #39ff14;
  font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
  margin: 0;
  min-height: 100vh;
  cursor: none;
  user-select: none;
  overflow: hidden;
}
.crt {
  letter-spacing: 1px;
  font-size: 1.1em;
}
.ascii-art {
  white-space: pre;
  font-size: 1.3em;
  margin: 8px 0 4px 0;
  text-align: center;
  line-height: 0.5;
  letter-spacing: 2px;
}
.projects, .services {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 180px;
  align-items: flex-start;
}
.project {
  padding: 22px 32px;
  border-radius: 6px;
  outline: 2px solid #39ff14;
  transition: outline 0.1s;
  font-size: 1.15em;
  background: none;
  width: 220px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.project.selected {
  outline: 5px solid #39ff14;
  color: #fff;
  font-weight: bold;
}
.project-title {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 4px;
}
.project-desc {
  font-size: 0.95em;
  color: #7affb0;
  margin-bottom: 0;
  margin-top: 0;
  text-align: center;
  opacity: 0.8;
}
.divider {
  width: 100%;
  text-align: center;
  margin: 40px 0 30px 0;
  position: relative;
}
.divider span {
  background: #101010;
  color: #39ff14;
  padding: 0 18px;
  font-size: 1.2em;
  position: relative;
  z-index: 1;
}
.divider:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #39ff14;
  opacity: 0.25;
  z-index: 0;
}
::selection {
  background: transparent;
}
.section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .ascii-art {
    font-size: 0.7em;
    line-height: 0.7;
    letter-spacing: 1px;
  }
  .projects {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-height: 70vh;
    overflow-y: auto;
    padding-bottom: 32px;
  }
  .column {
    min-width: unset;
    width: 100%;
    align-items: center;
  }
  .project {
    width: 90vw;
    max-width: 340px;
    height: 90px;
    font-size: 1em;
    padding: 14px 10px;
  }
  .divider {
    margin: 24px 0 18px 0;
  }
} 