@charset "UTF-8";

/* Link styles */
a:link,a:active,a:hover {
  color:#FF6F61;
/* Warm coral color for links */
}

a:visited {
  color:#D84B40;
/* Slightly darker coral for visited links */
}

/* Body - Background and font changes */
body {
  background-image:url(https://images.unsplash.com/photo-1517867065801-e20f409696b0?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  color:#F0F0F0;
/* Light text for contrast */
  font-family:'Lato',sans-serif;
/* Friendly font */
  font-weight:400;
/* Normal weight for readability */
  font-style:normal;
  font-size:14px;
/* Adjust font size for readability */
  margin:0;
  padding:0;
  height:100vh;
/* Ensure body takes the full height */
  line-height:1.6;
/* Increase line-height for better readability */
}

/* Profile section styling */
.profile_section_content {
  background-color:rgba(255,255,255,0.9);
/* Semi-transparent white background */
  color:#4E4A47;
/* Dark gray text for contrast */
  padding:20px;
  margin:20px;
  border-radius:10px;
/* Rounded corners for a softer look */
  box-shadow:0 4px 10px rgba(0,0,0,0.15);
/* Soft shadow for depth */
  max-width:960px;
/* Max width for readability */
  margin-left:auto;
  margin-right:auto;
}

/* Profile section background */
.profile_section_background {
  background-color:transparent;
  opacity:1;
  filter:none;
}

/* Image styling (e.g., profile picture) */