body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background:linear-gradient(to bottom right,#fef6ff,#e2f0ff);
margin-top: 40px;
}

.app-title {
position: absolute;
margin-top: 0px;
margin-bottom: 0px;
top: 6px;
left: 50%;
transform: translate(-50%);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 24px;
background: linear-gradient(to right, #d4af37,#f1d761);
-webkit-background-clip: text;
color: transparent;
letter-spacing: 3px;
z-index: 10;
}

.butterfly-img {
  position: fixed;
  bottom: 100px;
  left: 120px;
  width: 150px;
  height: auto;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.phoenix-img {
  position: fixed;
  top: 20px;
  right: 150px;
  width: 200px;
  height: auto;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

a {
  color: #8a66d9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.weather-app {
  background: rgba(255,255,255,0.95);
  max-width: 600px;
  margin: 45px auto;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 25px;
  gap: 10px;
}
.search-form{
  display: flex;
  flex: 1;
  justify-content: space-between;
}

.search-form-input {
flex: 1;
padding: 12px 15px;
max-width: 420px;
border-radius: 10px;
border: none;
background-color: #fbfbff;
font-size: 16px;
color: #555;
margin-right: 10px;
}

.search-form-button {
  padding: 12px 30px;
  background: #6a7fdb;
  border: none;
  border-radius: 6px;
  margin-left: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;  
}

.search-form-button:hover {
  background-color: #8f6ec9;
}

.weather-app-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.weather-app-city {
margin: 0;
font-size: 42px;
line-height: 48px;
color: #0a0a0a;
}

.weather-app-details {
  font-size: 16px;
  color: #5f5f5f;
  line-height: 35px;
  font-weight: 500;
}

.weather-app-details strong {
color: #d052f6;
}

.weather-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  margin-bottom: 20px;
}
.weather-app-temperature-container {
  display: flex;
 
}
.weather-app-icon{
  width: 88px;
  height: 88px;
}
.weather-app-temperature{
  font-size: 88px;
  line-height: 88px;
font-weight: bold;
}

.weather-app-unit {
  margin-top: 6px;
  font-size: 28px;
}

.weather-forecast {
display: flex;
justify-content: space-around;
}

.weather-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 10px;
  margin-bottom: 5px;
}

.weather-forecast-icon {
width: 70px;
height: 70x;
display: block;
margin: 0 auto;
}

.weather-forecast-temperatures {
  text-align: center;
  color: #d052f6;
  margin-top: 10px;

  justify-content: center;
}

.weather-forecast-temperature {
  padding: 0 10px;
}

footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  color: #888;
}