* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #111111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

.container {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  border: 1px solid #eaeaea;
}

h1 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

input {
  flex: 1;
  background: #f8f9fa;
  color: #111111;
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

input:focus {
  border-color: #000000;
}

button {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

button:hover {
  opacity: 0.85;
}

.weather-info {
  border-top: 1px solid #f0f0f0;
  padding-top: 24px;
}

#cityName {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
}

#temperature {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 8px 0;
  letter-spacing: -1px;
}

#description {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#footer-container {
  text-align: center;
  font-size: 0.85rem;
  color: #666666;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid #eaeaea;
}

#footer-container a {
  color: #111111;
  text-decoration: underline;
}
.top-header {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.top-header a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
}

.header-logo {
  width: 30px;
  height: 30px;
}
