/* 🧱 Body base */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
  min-height: 100vh;
  margin: 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🔳 Navbar (the #block div) */
#block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* 🎛️ Buttons */
button {
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #121212;
  background: linear-gradient(145deg, #e0e0e0, #a8a8a8);
  border: none;
  border-radius: 8px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}


button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.6);
}

button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.linker {
  color: #121212;
  text-decoration: none;
}

/* 🧠 Title style */
h1 {
  display: inline-block;
  margin-top: 60px;
  padding: 12px 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

h1:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.6);
  background: rgba(255, 255, 255, 0.15);
}

/* 🔘 Items list (if you add more later) */
.list {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.item {
  background: linear-gradient(135deg, #2b2b2b, #3a3a3a);
  color: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}

.l{
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}