/* Basic Body and Font Styles */
body {
  font-family: "Arial", sans-serif; /* A clean, professional font */
  line-height: 1.6; /* Improves readability */
  margin: 20px auto; /* Centers the content with some margin */
  max-width: 800px; /* Sets a maximum width for better readability on large screens */
  padding: 0 20px; /* Adds some padding on the sides */
  background-color: #f4f4f4; /* Light background color */
  color: #333; /* Darker text color for contrast */
}

/* Headings */
h1 {
  color: #2c3e50; /* A dark blue for main headings */
  text-align: center; /* Center the main name */
  margin-bottom: 5px;
}

h2 {
  color: #34495e; /* Slightly lighter blue for subheadings */
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ccc; /* A subtle line under sections */
  padding-bottom: 5px;
}

h3 {
  color: #555; /* A darker gray for smaller headings */
  margin-top: 15px;
  margin-bottom: 5px;
}

/* Image */
img {
  display: block; /* Makes the image a block element */
  margin: 0 auto 20px auto; /* Centers the image and adds bottom margin */
  border-radius: 50%; /* Makes the image circular */
  border: 3px solid #3498db; /* A thin border around the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Paragraphs */
p {
  margin-bottom: 10px;
}

/* Unordered Lists */
ul {
  list-style-type: disc; /* Default disc style for list items */
  margin-left: 20px; /* Indent list items */
  margin-bottom: 10px;
}

ul li {
  margin-bottom: 5px;
}

/* Horizontal Rule */
hr {
  border: 0;
  height: 1px;
  background-color: #ccc; /* Light gray line */
  margin: 30px 0; /* Adds space above and below the line */
}

/* Specific adjustments for contact info (if you want to group them) */
body > h3:nth-of-type(1), /* Contact */
  body > h3:nth-of-type(2) {
  /* Habilitação */
  text-align: center;
  margin: 0; /* Remove default margin to keep them close */
  font-size: 1em; /* Adjust font size if needed */
  font-weight: normal; /* Make them regular weight */
}

body > h2:nth-of-type(1) {
  /* Brazilian - 31 years */
  text-align: center;
  border-bottom: none; /* Remove border if you want */
  margin-top: 0;
  margin-bottom: 0;
}

body > h3:nth-of-type(3) {
  /* Married */
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
