/* General reset */
body {
  background-image: url("/assets/img/r6.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #ffffff;
}

/* Container styling */
.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.521);
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  width: 90%;
  max-width: 400px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Profile section */
.profile img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.952);
}

.profile h1 {
  font-size: 26px;
  margin: 15px 0;
  color: #333;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Links section */
.links a {
  display: block;
  background: #6200ea;
  color: #ffffff;
  text-decoration: none;
  margin: 12px 0;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.links a:hover {
  background: #4a00c2;
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Footer section */
footer p {
  margin-top: 20px;
  font-size: 14px;
  color: #000000;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

footer a {
  color: #6200ea;
  text-decoration: none;
  font-weight: bold;
}
