/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f6fa;
  color: #2f3640;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.project-container {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  color: #0072ff;
}

input, button {
  padding: 10px;
  margin: 10px 0;
  width: 100%;
  font-size: 16px;
  border: 2px solid #0072ff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

input:focus {
  outline: none;
  border-color: #00c6ff;
}

button {
  background: #0072ff;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #0052cc;
}

#output {
  margin-top: 15px;
  font-weight: bold;
  color: #2c3e50;
}
