body {
	background-color: rgb(13, 15, 19);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
  }
  .box {
	position: relative;
	width: 650px;
	height: 300px;
	background-color: rgb(9, 12, 23);
	border: 2px solid rgb(22, 27, 34);
	border-radius: 20px;
	box-shadow: 0 0 5px rgb(22, 27, 34);
	font-family: Verdana;
	color: white
	
  }
  .green-button {
	background-color: #34C759; /* default green color */
	color: #fff;
	padding: 15px 30px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 20px;
	text-shadow: 0 0 10px #fff;
	position: relative;
  }
  
  .green-button:hover {
	background-color: #34C759;
	box-shadow: 0 0 2px #34C759;
	text-shadow: 0 0 20px #fff;
  }
  
  .green-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #34C759;
	border-radius: 10px;
	z-index: -1;
	transform: scale(0.9);
	transition: transform 0.3s ease-in-out;
  }
  
  .green-button:hover::before {
	transform: scale(1);
	box-shadow: 0 0 10px #34C759;
  }
  
  .green-button::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #1A4D2E; /* darker green glow color */
	border-radius: 10px;
	z-index: -1;
	transition: width 0.5s ease-in-out;
  }
  
  .green-button:hover::after {
	width: 100%;
  }
  
  .button-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  }
  
  .green-button {
	margin: 10px;
  }
  
  .round-image {
	border-radius: 5px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	object-fit: cover;
  }
  
  .status-dot {
	position: absolute;
	border-radius: 5%;
	border-color: white;
	bottom: 120px;
	right: 200px;
	transform: translate(50%, 50%);
	width: 40px;
	height: 40px;
	background-color: #ff0000;
	border-radius: 50%;
	padding: 5px;
	border: 10px solid rgb(9, 12, 23);
  }
  
  .status-dot::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 35px;
	height: 10px;
	border-radius: 20%;
	background-color: rgb(9, 12, 23);
  }
  
  .container {
	text-align: center;
  }
  
  .avatar {
	border-radius: 5px;
	box-shadow: 0 0 10px white;
  }
  
  .button-container {
	margin-top: 40px;
  }
  .kl{
	color: white;
	font-family: Verdana;
  }
  
  .red-button {
	background-color: rgb(9, 12, 23);
	color: #fff;
	padding: 15px 30px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 20px;
	text-shadow: 0 0 10px #fff;
	position: relative;
  }
  
  .red-button:hover {
	background-color: rgb(9, 12, 23);
	box-shadow: 0 0 2px rgb(9, 12, 23);
	text-shadow: 0 0 20px #fff;
  }
  
  .red-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(9, 12, 23);
	border-radius: 10px;
	z-index: -1;
	transform: scale(0.9);
	transition: transform 0.3s ease-in-out;
  }
  
  .red-button:hover::before {
	transform: scale(1);
	box-shadow: 0 0 10px rgb(9, 12, 23);
  }
  
  .button-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  }
  
  .red-button {
	margin: 10px;
  }