/* Reset default browser margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Whole page background and font */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Main heading (your name) */
header h1 {
  font-size: 36px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 10px;
}

/* Subheading (role/title) */
header p {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
}

/* Section titles */
section h2 {
  font-size: 24px;
  color: #007BFF;
  border-bottom: 2px solid #007BFF;
  padding-bottom: 5px;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Content inside each section */
ul, p {
  padding-left: 20px;
  margin-bottom: 10px;
}

/* Make skills stand out */
.skills li {
  list-style: square;
  color: #444;
}

/* Add spacing between list items */
li {
  margin-bottom: 5px;
}

/* Optional: add a container for centering */
.container {
  max-width: 800px;
  margin: auto;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #0056b3;
}
/* Footer styles */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}