@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #111827;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-container {
  background-color: #1f2937;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  width: 400px;
  box-sizing: border-box;
  text-align: center;
}

h1 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}

input[type="file"] {
  width: 100%;
  margin-bottom: 1rem;
}

button {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background-color: #3b82f6;
}

.message {
         font-weight: bold;
         margin: 20px 0;
     }
     .message.error {
         color: #ff2424;
     }
     .message.success {
         color: #0cf702;
}

.centered-gif{
	  display: block;
  margin: 0 auto 1rem auto;
  max-width: 100%;
  height: auto;
}

