body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: url('/images/bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

.blurred-block {
  background: #bbb1b16b; /* White background with opacity */
  border-radius: 15px; /* Rounded corners */
  padding: 20px; /* Space inside the block */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow with slight blur */
  backdrop-filter: blur(10px); /* Blur effect */
  width: 400px; /* Set a width for the block */
  height: 400px;
  text-align: center; /* Center align text */
}

.container {
  text-align: center;
}

.title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #0000009f;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-pic {
  width: 120px; /* Adjust as needed */
  height: 120px; /* Adjust as needed */
  border-radius: 50%; /* Makes the image circular */
  border: 4px solid #fff; /* Optional: Adds a white border around the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow around the profile picture */
  margin-bottom: 20px; /* Space between the profile picture and the blurred block */
}

.link {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 15px 30px;
  margin: 10px 0;
  text-decoration: none;
  color: #333;
  font-size: 1.2em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s;
}

.link:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}
