xbody {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f2f2f2;
}

.container {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  align-items: center;
  flex-direction: column;
  display: flex;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 30em;
  padding: 5px;
}

h1 {
  font-size: 32px;
  margin-bottom: 0px;
}

.subtitle {
    color: #555;
}

p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.skills span {
  background-color: #f2f2f2;
  color: #333;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0 5px;
  font-size: 14px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-image: url('./avatar.png');
    background-size: cover;
    background-position: center;
    margin-right: 20px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #007bff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #0056b3;
}

.email-link i {
  font-size: 16px;
  margin-right: 5px;
}
