@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700&display=swap');

body{
  background-image: url('/image/stone.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 20px;

}
  .container {
    width: 100%;
    max-width: 400px;
  }

  h1 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.7rem;
    background: linear-gradient(90deg, #00f5ff, #ff00c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .card {
    
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 15px;
    margin: 12px 0;
    box-shadow: 0 0 10px rgba(0,255,255,0.2);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 20px rgba(255,0,200,0.4);
  }

  .card-title {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .tag {
    display: inline-block;
    margin-top: 5px;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 50px;
    background: linear-gradient(90deg, #00f5ff, #ff00c8);
    color: #fff;
  }