/* Reset some default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Times New Roman', Times, serif;
  line-height: 1.6;
  background: hsl(0, 0%, 100%);
  color: #333;
}

/* Header styling */
header {
  background: #F1F0E8;
  color: #000000;
  padding: 1rem;
  text-align: center;
}

header img {
  width: 200px;          /* Set desired width */
  height: 200px;         /* Set the same height for a square base */
  border-radius: 50%;    /* Makes the image circular */
  object-fit: cover;     /* Ensures the image covers the area without distortion */
  border: 0px solid #000000; /* Optional: adds a border for visual appeal */
}

/* Style for social links */
.social-links {
  margin-top: 0px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 24px;  /* Adjusts the size of the icons */
  color: #333;      /* Default icon color */
  text-decoration: none;
}

.social-links a:hover {
  color: #0077b5;  /* Change hover color as desired */
}

/* Section styling */
section {
  padding: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Projects styling */
.project {
  background: #fff;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(209, 140, 140, 0.1);
}

#projects a {
  text-decoration: none; /* Remove underline */
  color: inherit;        /* Inherit the text color */
  display: block;        /* Ensure full block clickable */
}

#projects .project {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  transition: background-color 0.3s;
}

#projects .project:hover {
  background-color: #f9f9f9; /* Visual cue on hover */
}

#about {
  text-align: left;
}

/* Footer styling */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
