:root {
  color-scheme: dark;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  background: #000;
  color: #34e27a;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  background: #000;
}

.home {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

h1 {
  margin: 0 0 3rem;
  color: #34e27a;
  font-size: clamp(7rem, 25vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.72;
  text-indent: -0.12em;
}

.cyber-image {
  display: block;
  width: min(100%, 42rem);
  height: auto;
  margin: 0 0 2.5rem;
}

.service-columns {
  display: grid;
  width: min(100%, 46rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  margin: 0 auto;
}

.services {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid #195c35;
  color: #34e27a;
  font-size: 1rem;
  text-align: left;
  text-decoration: none;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.services a:hover,
.services a:focus-visible {
  border-color: #34e27a;
  background: #07150c;
  outline: none;
}

.service-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.3rem;
}

.service-name {
  color: #34e27a;
}

.service-description {
  color: #79a88a;
  font-size: 0.7rem;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .service-columns {
    grid-template-columns: 1fr;
  }
}

.arrow {
  font-size: 1.1rem;
}
