body {
  background: linear-gradient(to right, #e0f7fa, #ffffff); /* Light gradient background */
  color: #333; /* Dark text for readability */
  font-family: "Arial", sans-serif; /* Modern sans-serif font */
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  max-width: 900px;
}

.perfil {
  text-align: center;
  margin-bottom: 20px;
}

.perfil img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #00796b; /* Adding a border to the profile picture */
}

main {
  display: flex; /* Flexbox for two-column layout */
  flex-direction: row;
  justify-content: space-between;
}

section {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ccc; /* Adding borders to sections */
  border-radius: 8px; /* Rounded corners */
  background-color: #ffffff; /* White background for sections */
}

h1 {
  color: #00796b; /* Primary color for headings */
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  color: #00796b; /* Primary color for subheadings */
  font-size: 24px;
  margin: 20px 0 10px;
}

p {
  color: #333;
  margin: 10px 0;
}

ul {
  margin: 10px 0;
  padding-left: 20px;
}

li {
  list-style-type: none;
  color: #333;
  margin-bottom: 8px;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid #eee;
}
