body {
  background-color: #1a1a2e; /* Dark background */
  color: #eaeaea; /* Light text color */
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.profile {
  text-align: center;
}

.profile img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}

h1 {
  color: #6f00ff; /* Blueviolet color */
}

.typing {
  color: #a7a7a7; /* Grey color for typing text */
}

h2 {
  color: #6f00ff; /* Blueviolet color */
  border-bottom: 2px solid #6f00ff; /* Underline effect */
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  background-color: #2a2a72; /* Darker purple for list items */
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
}

.socials a {
  color: #6f00ff; /* Blueviolet color for icons */
  margin: 0 10px;
  font-size: 24px;
}

.footer {
  text-align: center;
  margin-top: 20px;
  color: #a7a7a7; /* Grey color for footer */
}
.back-home-button {
  display: inline-block;
  background-color: #6f00ff; /* Blueviolet background */
  color: #ffffff; /* White text */
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.back-home-button:hover {
  background-color: #5a00e6; /* Darker shade on hover */
}
