* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  text-align: center;
  overflow-x: hidden;
}

img.profile {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s ease;
}

p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  animation: fadeIn 2s ease;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px auto;
  padding: 12px 20px;
  width: 250px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 1.5s ease;
}

.links a:hover {
  background: #00c6ff;
  transform: scale(1.05);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

footer {
  margin-top: 3rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

#preview-box {
  position: absolute;
  display: none;
  pointer-events: none;
  width: 300px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  z-index: 100;
}

#preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
