:root {
  --bg: white;
  --fg: black;
  --terminal-bg: #2d2d2d;
  --terminal-fg: #e0e0e0;
  --terminal-border: #4a4a4a;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.banner {
  width: 100%;
  background: var(--terminal-bg);
  padding: 10px 20px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--terminal-border);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.text {
  margin: 0;
  color: var(--terminal-fg);
  font-family:
    "SF Mono", "JetBrains Mono", "Fira Code", "Menlo", "Consolas",
    "DejaVu Sans Mono", monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.5;
}

.mobile-break {
  display: none;
}

.container {
  display: grid;
  grid-template-columns: 99px 1fr;
  gap: 20px;
  align-items: start;
}

.avatar {
  width: 99px;
  height: 99px;
}

.avatar img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 50%;
  border: 2px solid var(--fg);
}

.info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.name {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: 500;
  font-size: 40px;
  font-style: normal;
  line-height: normal;
  color: var(--fg);
  margin: 0;
}

.tz {
  padding-left: 6px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-family:
    "SF Mono", "JetBrains Mono", "Fira Code", "Menlo", "Consolas",
    "DejaVu Sans Mono", monospace;
  line-height: normal;
  color: var(--fg);
  margin: 0;
}

.title {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  font-family:
    "SF Mono", "JetBrains Mono", "Fira Code", "Menlo", "Consolas",
    "DejaVu Sans Mono", monospace;
  line-height: normal;
  color: var(--fg);
  margin: 0;
}

.location {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  font-style: normal;
  line-height: normal;
  color: var(--fg);
  margin: 0;
}

.cursor {
  display: inline-block;
  width: 9px;
  height: 0.9em;
  background: white;
  color: var(--fg);
  animation: blink 1.4s steps(1) infinite;
}

.logos {
  display: grid;
  grid-template-columns: repeat(7, 40px);
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  overflow-x: auto;
  padding: 10px 0;
}

.logos img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.logos img:hover {
  opacity: 1;
}

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

/* Mobile phones */
@media (max-width: 768px) {
  .banner {
    padding: 8px 12px;
  }

  .text {
    font-size: 11px;
    letter-spacing: 0.2px;
  }

  .mobile-break {
    display: inline;
  }
}

@media (max-width: 480px) {
  .text {
    font-size: 10px;
    letter-spacing: 0.1px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: black;
    --fg: white;
  }
}
