@font-face {
  font-family: 'Departure Mono';
  src: url('fonts/departure/DepartureMono-Regular.woff2') format('woff2'),
       url('fonts/departure/DepartureMono-Regular.woff') format('woff'),
       url('fonts/departure/DepartureMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root {
  --spacing-large: 20px;
  --spacing-medium: 10px;
  --spacing-small: 5px;
  --max-width-container: 800px;
  --max-width-container-mobile: 90%;
}

body {
  font-family: 'Departure Mono', monospace;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  line-height: 1.6;
  font-size: 16px;
}

pre {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-large);
  margin-bottom: var(--spacing-large);
}

.container {
  max-width: var(--max-width-container);
  margin: auto;
  padding: var(--spacing-large);
  background: white;
  margin-top: var(--spacing-large);
  margin-bottom: var(--spacing-large);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-large);
}

.contact-info div {
  margin-bottom: var(--spacing-large);
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

/* Add this to make the layout responsive */
@media only screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .container {
    max-width: var(--max-width-container-mobile);
    padding: var(--spacing-medium);
    margin-top: var(--spacing-medium);
    margin-bottom: var(--spacing-medium);
  }
  pre {
    padding: var(--spacing-medium);
    margin-bottom: var(--spacing-medium);
  }
  .contact-info {
    padding: var(--spacing-medium);
  }
  .contact-info div {
    margin-bottom: var(--spacing-medium);
  }
}

/* Add this to make the layout responsive */
@media only screen and (max-width: 480px) {
  body {
    font-size: 12px;
  }
  .container {
    max-width: var(--max-width-container-mobile);
    padding: var(--spacing-small);
    margin-top: var(--spacing-small);
    margin-bottom: var(--spacing-small);
  }
  pre {
    padding: var(--spacing-small);
    margin-bottom: var(--spacing-small);
  }
  .contact-info {
    padding: var(--spacing-small);
  }
  .contact-info div {
    margin-bottom: var(--spacing-small);
  }
}
