/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212; /* Dark gray-black background */
  color: #ffffff; /* White text */
}

a {
  color: #4a90e2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container Styles */
.container {
  max-width: 1000px; /* Adjust the max-width as desired */
  margin: 0 auto; /* Centers the container */
  padding: 0 100px; /* Adds padding on the sides */
}

/* Header Styles */
header {
  background-color: #1f1f1f;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  margin: 5px 0 0;
  font-size: 1em;
}

/* Navigation Styles */
nav {
  background-color: #0d47a1; /* Dark blue */
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 10px;
  text-align: center;
}

nav li {
  display: inline-block;
  margin: 0 15px;
}

nav a {
  color: #ffffff;
  font-size: 1em;
  text-transform: uppercase;
}

nav a:hover {
  color: #bbdefb;
}

/* Main Content Styles */
main {
  padding: 20px 0; /* Adjust padding as needed */
}

section {
  margin-bottom: 40px;
}

h2 {
  border-bottom: 2px solid #4a90e2;
  padding-bottom: 10px;
  color: #4a90e2;
}

h3 {
  margin-top: 20px;
  color: #bbdefb;
}

h4 {
  margin: 5px 0;
  color: #e3f2fd;
}

.date {
  font-size: 0.9em;
  color: #b0bec5;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

.job ul,
.education-item ul,
.certification-item ul {
  list-style-type: disc;
  padding-left: 40px;
}

/* Footer Styles */
footer {
  background-color: #1f1f1f;
  text-align: center;
  padding: 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}
