body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom, #C3375A, #EB6548);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  margin: auto;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: -50px;
  border: 4px solid white;
}

h1 {
  font-size: 24px;
  margin: 10px 0;
}

.title {
  font-size: 16px;
  font-weight: bold;
  color: gray;
}

.resume-btn {
  background-color: #FF9E7B;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0;
}

.resume-btn:hover {
  background-color: #FECC6A;
}

.bio {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}

.info {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.info h3 {
  font-size: 12px;
  color: gray;
}

.info p {
  font-size: 14px;
  color: black;
}

/* Container Styles */
.social-links {
    text-align: center; /* Centers the entire section */
    margin: 2rem 0; /* Adds spacing around the section */
}

.social-links ul.inline {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem; /* Spacing between icons */
}

/* Link Styles */
.social-links a {
    display: inline-block;
    width: 50px; /* Set icon size */
    height: 50px;
    border-radius: 50%; /* Makes the icon backgrounds circular */
    background-color: #f5f5f5; /* Light gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; /* Removes underline */
    transition: transform 0.2s ease, background-color 0.2s ease; /* Hover effects */
}


/* SVG Icon Styling */
.social-links a svg {
    width: 70%; /* Icon size relative to container */
    height: 70%;
    fill: #333; /* Default icon color */
    transition: fill 0.2s ease; /* Smooth color transition */
}


/* Hover Effects */
.social-links a:hover {
    transform: scale(1.1); /* Slight zoom effect */
    background-color: #333; /* black background on hover */
}

/* GitHub Hover Styles (default black icon on grey background) */
.social-links a[href*="github"] {
    background-color: #f5f5f5;
    fill: #333;
}

.social-links a[href*="github"]:hover {
	background-color: #333; /* transition to black background on hover */
}

.social-links a[href*="github"]:hover svg {
    fill: #fff; /* transition to white icon on hover */
}

/* LinkedIn Hover Style */
.social-links a[href*="linkedin"]:hover svg {
    fill: #0077B5; /* transition to LinkedIn blue icon on hover */
}

/* IMDb Hover Style */
.social-links a[href*="imdb"]:hover svg {
    fill: #F5C518 /* transition to IMDB yellow icon on hover */
}


/* Responsive Design */
@media (max-width: 768px) {
    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links a svg {
        width: 50%;
        height: 50%;
    }
}