body {
	font-family: Arial, sans-serif;
	background: #f4f6f8;
	margin: 0;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh; /* Высота окна браузера */
  }
  
  
  .profile-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	max-width: 350px;
	width: 100%;
	padding: 30px;
	text-align: center;
  }
  
  
  .profile-card img {
	width: 120px;
	height: 120px;
	border-radius: 50%; /* Круг */
	object-fit: cover;
	margin-bottom: 20px;
	border: 3px solid #4a90e2;
  }
  
 
  .profile-card h1 {
	margin: 0 0 10px 0;
	font-size: 24px;
	color: #333;
  }
  
  
  .profile-card p {
	font-size: 16px;
	color: #666;
	margin: 0 0 20px 0;
  }
  
  
  .profile-card button {
	background-color: #4a90e2;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
  }
  
  .profile-card button:hover {
	background-color: #357ABD;
  }
  
  
  .social-links {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 15px;
  }
  
  .social-links a {
	color: #4a90e2;
	text-decoration: none;
	font-size: 20px;
	transition: color 0.3s ease;
  }
  
  .social-links a:hover {
	color: #357ABD;
  }
  
 
  @media (max-width: 400px) {
	.profile-card {
	  padding: 20px;
	}
  
	.profile-card h1 {
	  font-size: 20px;
	}
  
	.profile-card p {
	  font-size: 14px;
	}
  }