
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
body {
 background: linear-gradient(to bottom, #000000, #f0a500);  
 color: #f0a500;           
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.app-title {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 32px;
  font-weight: bold;
  color: #fff8dc;
  text-shadow:
    0 0 5px #f0a500,
    0 0 10px #ffbb00,
    0 0 20px #ffd700,
    0 0 40px #ffea00;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow:
      0 0 5px #ffffff,
      0 0 10px #00ff0d,
      0 0 20px #25f500,
      0 0 40px #00f2ff;
  }
  to {
    text-shadow:
      0 0 10px #000000,
      0 0 20px #00eaff,
      0 0 30px #00f2ff,
      0 0 60px #00f2ff;
  }
}

.card {
background: linear-gradient(235deg, #000000, #4b3303);
   border: 3px solid rgb(210, 207, 207);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
  height: 400px; 
  width: 400px;  
  text-align: center;
}

.search {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.box {
  flex: 1;
  padding: 15px;
  border: 3px solid white;
  border-radius: 55px;
  outline: none;
  background-color: #000000;
  color: white;
  font-weight: 700;
}
.btn {
  background-color: #fcfafa;
  padding: 20px;
  border-radius: 355px;
  cursor: pointer;
  transition: 0.s ease;
}

.weather h1.temp {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.weather h2.City {
  font-size: 2rem;
  color: #ffb733;
  margin-bottom: 3rem;
}


.details {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  font-size: 1.4rem;
  font-weight:bolder;
  color: #ddd;
}

.details p:first-child {
  font-weight: bolder;
  color: #f0a500;
}
