* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: #7a7a7a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

li,i{
    text-decoration: none;
    font-size: 20px;
}
a{
    text-decoration: none;
    font-size: 16px;
}
i{
    padding-right: 10px;}

.card-container {
  min-width: 400px;
  max-width: 80%;
  border-radius: 24px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.card {
  display: flex;
  flex-direction: column;
}

.card-header {
  position: relative;
  height: 450px;
  background-color: black;
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.overlay h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.overlay h3 {
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 10px;
}

.company {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  margin-bottom: 15px;
}

.company img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: white;
}

.icons {
  display: flex;
  gap: 20px;
  font-size: 20px;
}

.about-section {
  padding: 20px;
  background-color: white;
}

.about-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 14px;
  color: #333;
}

.card-footer {
  display: flex;
  justify-content: space-around;
  padding: 12px 20px;
  border-top: 1px solid #ddd;
  background-color: #f9f9f9;
}

.card-footer button {
  background: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-footer button:hover {
  background-color: #efefef;
}
