/* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #1a1a1a; /* Dark background */
  color: #f1f1f1; /* Light font color for contrast */
}

/* Container */
.container {
  text-align: center;
}

/* Profile Section */
.profile-section {
  margin-top: 950px; /* Increased margin for better spacing */
  margin-bottom: 30px;
}

.profile-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 4px solid #007bff; /* Bright blue border */
  object-fit: cover;
}

h1 {
  font-size: 2.5em;
  margin: 20px 0;
  color: #007bff; /* Bright blue for the main heading */
}

.buttons {
  margin: 20px 0; /* Adjust margin as needed */
  display: flex; /* Optional: Align buttons horizontally */
  justify-content: center; /* Optional: Center buttons horizontally */
}


button {
  background-color: #0056b3; /* Darker blue background */
  border: none;
  color: #ffffff; /* White text for contrast */
  padding: 12px 24px;
  text-align: center;
  font-size: 16px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #004494; /* Lighter blue on hover */
}

/* Section Styling */
.section {
  margin-top: 50px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.narrow-list {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #007bff; /* Bright blue for section headings */
}

p {
  font-size: 1.1em;
  color: #e0e0e0; /* Lighter gray for paragraph text */
}

/* Styling for the table in the About Me section */
#photo-table {
  margin-top: 20px;
}

#photo-table table {
  width: 100%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}

#photo-table td {
  padding: 10px;
  text-align: center;
}

#photo-table img {
  width: 100%;
  aspect-ratio: 3 / 4; /* Ensures a 3:4 aspect ratio */
  object-fit: cover;   /* Crops the image to fit the 3:4 box without distortion */
  max-width: 300px;    /* Set a max width to control image size */
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-img {
      width: 120px;
      height: 120px;
  }

  h1 {
      font-size: 2em;
  }

  h2 {
      font-size: 1.8em;
  }
}
