
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f5;
}

.layout {
  display: flex;
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 250px;
  height: 100vh;
  background: #111;
  color: white;
  padding: 40px 30px;
}

.sidebar h2 {
  margin-top: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 15px 0;
}

.sidebar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

/* Main content area */
.content {
  margin-left: 300px;
  padding: 60px;
  max-width: 900px;
}

h1 {
  margin-top: 10px;
}

/* Resume button */
.download-btn {
  display: inline-block;
  padding: 12px 18px;
  background: black;
  color: white;
  text-decoration: none;
  margin-bottom: 25px;
  border-radius: 4px;
}

/* Resume text block */
.resume-text {
  white-space: pre-wrap;
  font-family: monospace;
  background: white;
  padding: 25px;
  border: 1px solid #ddd;
  line-height: 1.6;
}

/* Contact links */
.contact a {
  display: block;
  margin: 14px 0;
  font-size: 18px;
  color: black;
  text-decoration: none;
}
