@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  height: 100%;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  background: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #e0e0e0;
  margin-bottom: 15px;
}

h1 {
  margin: 10px 0;
  font-size: 1.8rem;
}

p {
  margin: 5px 0 20px;
  font-size: 0.95rem;
  color: #b0b0b0;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  padding: 12px;
  background: #2a2a2a;
  color: #e0e0e0;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
}

.links a:hover {
  background: #3a3a3a;
  transform: translateY(-2px);
}

.links a i {
  font-size: 1.2rem;
  margin: 0 10px;
}

.link-text {
  flex: 1;
  text-align: center;
}