body {
    background-color: black; /* Черный фон */
    color: white; /* Белый цвет текста */
}

img {
	float: left;
	margin: 0 20px 0 10px;	
  	padding: 0;	
}
#name {
	margin: 10px 0 0 0;
	padding: 0;
	float: left;
	font-size: 24px;
}
table {
	margin: 0;	
  	padding: 0;

}
.button-right {
  	background-color: #4CAF50; /* Зелёный */
  	border: none;
  	color: white;
	margin: 4px 2px;	
  	padding: 20px 25px;
  	text-align: center;
 	text-decoration: none;
  	display: inline-block;
  	font-size: 16px;
	font-weight: bold; /* Делает текст жирным */
	cursor: pointer;
 	transition: background 0.5s ease;
  	border-radius: 5px;
  	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.button-right:hover {
  	background: linear-gradient(45deg, #57a957, #4CAF50);	
}

a {
  	text-decoration: none; /* Убирает подчеркивание */
 	color: white; /* Устанавливает белый цвет текста */
	
}
#conteyner {
	 text-align: center; /* Центрировать текст внутри блока */

}
/* ****************************************************************************************** */