/* styles.css */

/* General styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
}

.container {
  text-align: center;
  margin-top: 50px;
}

h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 30px;
}

#generator {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

button {
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #ff6b6b;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ff4d4d;
}

/* Animation for generated code */
#generatedCode {
  font-size: 3rem;
  color: #6c5ce7;
  display: inline-block;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Activation message styles */
#activationMessage {
  background-color: #f53b57;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
}

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