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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #c9a961 100%);
  color: #fff;
}

.container {
  text-align: center;
  padding: 2rem;
}

.content h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.content p {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

.linkedin-badge {
  margin-top: 3rem;
  display: inline-block;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 2rem;
  }
  
  .content p {
    font-size: 1rem;
  }
  
  .linkedin-badge {
    margin-top: 2rem;
  }
}