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

body {
  font-family: 'Roboto Mono', monospace;
  background-color: #0a0a6e;
  color: #c8c8ff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

main {
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

h1,
h2 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffff00;
  margin-bottom: 0.75rem;
}

p {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.websites {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.websites li {
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #00a8af;
  color: #000;
}

.badge:hover {
  background-color: #00f5ff;
}

@media (max-width: 600px) {
  h1,
  h2 {
    font-size: 1rem;
  }

  p,
  .websites li,
  .badge {
    font-size: 0.9375rem;
  }
}
