/* The Tom West Show — Global Styles */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #111;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Layout */
.container {
  padding: 2rem;
  max-width: 600px;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 2rem;
}

/* Links */
a {
  color: #fff;
  text-decoration: none;
}

.btn {
  display: inline-block;
  border: 1px solid #444;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.btn:hover {
  border-color: #fff;
}
