body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1e1e2f, #b46f0f);
  color: #fff;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

@media (max-width: 600px) {
  .links a {
    font-size: 16px;
    padding: 12px;
  }
}


.container {
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.profile img {
  border-radius: 5%;
  width: 120px;
  border: 0px solid #b91010;
}

.profile h1 {
  margin: 10px 0 5px; 
}

.profile p {
  color: #ccc;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.links a {
  display: block;
  background: #cc060647;
  color: #fff;
  text-decoration: none;
  margin: 10px 0;
  padding: 15px;
  border-radius: 10px;
  transition: background 0.3s;
}

.info {
  color: rgb(255, 247, 16);
}

.links a:hover {
  background: #f995007a;
}
