body {

  margin: 0;

  font-family: 'Poppins', sans-serif;

  background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);

  color: #333;

  display: flex;

  justify-content: center;

  align-items: center;

  height: 100vh;

}

.container {

  background: rgba(255, 255, 255, 0.15);

  border-radius: 20px;

  backdrop-filter: blur(10px);

  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

  padding: 40px;

  text-align: center;

  animation: popUp 1s ease forwards;

}

@keyframes popUp {

  0% {

    transform: scale(0.8);

    opacity: 0;

  }

  100% {

    transform: scale(1);

    opacity: 1;

  }

}

h1 {

  color: white;

  margin-bottom: 30px;

  font-size: 3em;

  animation: slideDown 1s ease-in-out;

}

@keyframes slideDown {

  from {

    transform: translateY(-50px);

    opacity: 0;

  }

  to {

    transform: translateY(0);

    opacity: 1;

  }

}

input, button {

  padding: 12px 20px;

  border: none;

  border-radius: 10px;

  font-size: 16px;

  margin: 10px;

  outline: none;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

input {

  width: 250px;

}

button {

  background: #0077ff;

  color: white;

  transition: all 0.3s ease;

  cursor: pointer;

}

button:hover {

  background: #0056d6;

  transform: scale(1.05);

}

#result {

  margin-top: 30px;

  background: white;

  border-radius: 15px;

  padding: 20px;

  max-width: 400px;

  margin-left: auto;

  margin-right: auto;

  box-shadow: 0 6px 12px rgba(0,0,0,0.2);

  animation: fadeIn 1s ease-in-out;

}

@keyframes fadeIn {

  from {

    opacity: 0;

    transform: translateY(20px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

#result img {

  width: 80px;

  margin-top: 15px;

}