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

.container {
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 90%;
  max-width: 400px;
}

.profile {
  margin-bottom: 20px;
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

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

.profile p {
  font-size: 16px;
  color: #666;
}

.links a {
  display: block;
  background-color: #0a864d;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.links a:hover {
  background-color: #45a049;
}
