

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Cinzel&family=Inter:wght@400;600&family=Montserrat:wght@400;600&family=Playfair+Display:wght@400;700&display=swap');


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


body {
  background: linear-gradient(135deg, rgba(255, 0, 150, 0.5), rgba(0, 204, 255, 0.5));
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}


.main1 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 600px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 1.2s ease;
}


.head1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  background: linear-gradient(90deg, #ff00cc, #3333ff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 5s infinite linear;
  text-align: center;
  margin-bottom: 30px;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


input#inp {
  width: 70%;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #444;
  border-radius: 10px;
  background: #111;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  margin-bottom: 20px;
}

input#inp:focus {
  border-color: #00ffff;
  box-shadow: 0 0 10px #00ffff50;
  background-color: #151515;
}


button {
  padding: 14px 20px;
  background: linear-gradient(to right, #00f2fe, #4facfe);
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  color: #000;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

button:active {
  transform: scale(0.95);
}

button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 70%);
  animation: ripple 2s infinite linear;
  z-index: 0;
  pointer-events: none;
}

@keyframes ripple {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(3);
    opacity: 0;
  }
}


ul#output {
  list-style-type: none;
  margin-top: 30px;
}

ul#output li {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  position: relative;
  transition: 0.3s;
  animation: slideIn 0.5s ease forwards;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul#output li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}


ul#output li button {
  background: transparent;
  border: none;
  color: #ff4d4d;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px;
  transition: 0.2s;
}

ul#output li button:hover {
  color: #ff1a1a;
  transform: scale(1.2);
}


@keyframes slideIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


@media (max-width: 600px) {
  .main1 {
    padding: 30px 20px;

  }

  input#inp {
    width: 100%;
    margin-bottom: 15px;
  }

  button {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  ul#output li {
    flex-direction: column;
    align-items: flex-start;
  }

  ul#output li button {
    align-self: flex-end;
    margin-top: 10px;
  }

}
body {
    background-color: aqua;
    /* display: flex;
    justify-content: center;
    align-items: center; */
  }