@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@1,400;1,700&display=swap');

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #0f1012;
  color: #d1d5db;
  font-family: 'Roboto Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('https://www.transparenttextures.com/patterns/robots.png');
  background-repeat: repeat;
  background-size: auto;
}

.container {
  background-color: rgba(17, 24, 39, 0.85);
  padding: 2rem 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  margin: 1rem;
  max-width: 90%;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-top: 0;
}

a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}