
body {
    background-color: #EAF7F4;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    background: linear-gradient(135deg, #c2e9fb);
    color: #333;

}
html,body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    border-bottom: 1px solid skyblue;
    padding: 0 0 20px 0;
}
main{
    flex: 1;
}
.weather-app {
    background-color: skyblue;
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}
 


.search-form-input {
    background-color: white;
    border: none;
    border-radius: 5px;
    width: 80%;
    font-size: 12px;
    padding: 10px 10px;
}

.search-form-button {
    background-color: whitesmoke;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    margin-left: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;

}
.search-form-button:hover{
    background: #005dc1;
}

.weather-app-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.weather-app-city {
    margin: 0 auto;
    font-size: 30px;
    line-height: 45px;
}

.weather-app-values {
    font-size: 12px;
    line-height: 20px;
}

.weather-app-values strong {
    color: palevioletred;
}

.weather-app-temp {
    display: flex;
}

.weather-app-temperature {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;

}

.weather-app-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}
.weather-icon {
    width: 75px;
    height: 75px;
    
    
    
}
.weather-app-temperature,
.weather-app-unit {
    display: inline-block;
    vertical-align: middle;

}

.weather-app-unit {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 28px;
    margin-left: 5px;
}
.temperature-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    
}

.weather-forecast {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 10px;
    overflow-x: auto;   
}
    
   .forecast-day {
    font-size: 14px;
    color: #333;
    text-align: center;
   }
   .forecast-icon {
    font-size: 24px;
    text-align: center;
    margin: 5px 0;
   }
   .forecast-temp-min,
   .forecast-temp-max {
    font-size: 12px;
    color: palevioletred;
    text-align: center;
}
   .forecast-temp-max{
    font-weight: bold;
   } 
   .forecast-temp{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
   }
   
    
   
   .forecast-info{
    background-color: #f0f8ff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100px;
    flex: 0 0 100px;
    text-align: center;
    margin-bottom: 15px;
   }
   
  
footer {
    border-bottom: 1px solid skyblue;
    padding: 20px 0 0 0;
    text-align: center;
    font-size: 12px;
    color: #666;

}

a {
    color: palevioletred;
}