body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #111;
  margin: 0;
  font-family: 'Share Tech Mono', monospace;
  color: #fff;
}

.container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}


.about-box {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #1a1a1a;
  padding: 30px;
  border: 2px solid #333;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(200, 0, 255, 0.15);
  flex-wrap: wrap;
  max-width: 900px;
  width: 100%;
  justify-content: center;
}


.profile-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 250px;
}

.profile-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #333;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}


.profile-info {
  flex: 2 1 300px;
  max-width: 500px;
}

.profile-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f8f8f8;
}

.profile-info ul {
  list-style: none;
  padding: 0;
}

.profile-info li {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #ccc;
}


.internal-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-button {
  background-color: #222;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid #555;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.nav-button:hover {
  background-color: #444;
  color: #f8f8f8;
  transform: scale(1.05);
}
