*{
  box-sizing: border-box;
}

/* styling completed with the help of chatgpt */
body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #fff;
  text-align: center;
  background: linear-gradient(-45deg, #74ebd5, #ACB6E5, #ff9a9e, #fad0c4);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  transition: background 0.5s ease;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1 {
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

input {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

input::placeholder {
  color: #eee;
}

button {
  padding: 10px 20px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  background: #ff6b6b;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}

button:hover {
  transform: scale(1.05);
  background: #ff4757;
}

p {
  margin-top: 20px;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.3s, color 0.3s;
}
