/* This styles the whole background */
body {
  /* The gradient: starts top-left (135deg) with dark green, fades to lighter green */
  background: linear-gradient(135deg, #124a12, #228b22); 
  color: white; /* Makes your name and bio text white so it's readable */
  min-height: 100vh; /* Ensures the gradient stretches all the way to the bottom of the screen */
  box-sizing: border-box; /* Keeps the padding from creating a weird scrollbar */
  
  font-family: sans-serif;
  text-align: center; /* Centers everything */
  margin: 0;
  padding: 20px;
}

/* This keeps everything in a neat column */
.container {
  max-width: 600px;
  margin: 0 auto; /* Centers the container on the screen */
}

/* Styles your profile picture */
.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 10%; /* Makes it a rounded square */
  object-fit: cover;
  margin-bottom: 10px;
}

/* Styles the links to look like buttons */
.link-button {
  display: block; /* Stacks them vertically */
  background-color: #32CD32; /* Green color */
  color: white;
  text-decoration: none; /* Removes the underline */
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px; /* Rounded corners */
  font-weight: bold;
  transition: background-color 0.3s; /* Smooth hover effect */
}

/* What happens when you hover over a button */
.link-button:hover {
  background-color: #124a12; /* Darker Green on hover */
}