* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  background-color: #000;
  color: #F1F1F1;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding-top: 40px;
}


main.container {
  max-width: 500px;
  width: 100%;
}


.img-trevo {
  width: 400px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px #4F6D55);
}


h2 {
  color: #FF8C42;
  font-size: 28px;
  margin-bottom: 25px;
}

.result-text {
  margin-top: 25px;
  font-size: 22px;
  font-weight: 600;
  color: #90CB41;
  text-shadow: 0 0 8px #90CB41;
  animation: fadeIn 0.6s ease-in-out;
}

input {
  padding: 12px;
  margin: 10px;
  border-radius: 10px;
  border: none;
  width: 160px;
  font-size: 16px;
  background-color: #1c1c1c;
  color: #F1F1F1;
}


button {
  background-color: #FF8C42;
  color: #F1F1F1;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #90CB41;
  transform: scale(1.05);
}


button:active {
  transform: scale(0.92);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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