*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    
}
body{
    background: linear-gradient(135deg, rgb(182,166,235), rgb(150,140,230));
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.container h1{
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
    letter-spacing: 1px;
}
.container{

    padding: 30px;
    background: rgba(255, 255, 255, 0.2);  /* transparent white */
    backdrop-filter: blur(15px);           /* glassy blur */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    color: #fff; 
    transition: all 0.3s ease-in-out;
}
/* Glow effect on hover */
.container:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6),
                0 0 45px rgba(80, 150, 255, 0.5);
    transform: scale(1.02);
}


.cityWeather{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 20px;
}
.cityWeather .cityName{
    padding: 8px;
    border-radius: 5px;
    border: 1px solid rgb(187, 187, 187);  
}

.cityWeather .getWeather{
    padding: 8px 15px;
    border-radius:5px ;
    border: 1px solid rgba(66, 66, 186, 0.953);
    background-color: rgba(66, 66, 186, 0.953);
    color: white;
    cursor: pointer;
}
.getWeather:hover{
    background-color: rgba(72, 72, 168, 0.953);
}
.location-not-found{
    
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.location-not-found h1{
    font-size: 2rem;
    margin: 20px;
    color:rgba(255, 255, 255);;
}
.location-not-found img{
    width: 60%;
}
.weather-details{
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.weather-details img{
    width: 60%;
    
}
.weather-description {
    text-align: center;
    margin:10px
}
.weather-description .temperature{
    font-weight: 800;
    font-size: 2rem;
    position: relative;
}
.weather-description .temperature sup{
    font-weight: 600;
    position: absolute;
    
}
.weather-description .weather-type{
    font-weight:600;
    font-size: 1.5rem;
    text-transform: capitalize;
}

.weather-elements{
    width:100% ;
    display: flex;
    justify-content: space-around;
    margin: 20px;
}
.weather-elements .humidity, .wind{
    display: flex;
}
.weather-elements i{
    font-size: 25px;
}
.weather-elements .text span{
    font-size: 1rem;
    font-weight: 600;
}