/* Reset some defaults */
body, h1, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.app_logo
{
  width: 120px;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.logo {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #2c3e50;
}

.shortener-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.shortener-form input {
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
}

.shortener-form button {
  padding: 12px;
  font-size: 1rem;
  background: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.shortener-form button:hover {
  background: #34495e;
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #777;
}
