* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #141e30, #137af0); 
    
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.weather-box {
    width : 500px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.weather-box .search-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.weather-box .search-box input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.weather-box .search-box button {
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}   

.weather-box .weather-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column ;
    margin-bottom: 20px;
}

.weather-box .temp-list, .wind-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.temperature, .weather, .humidity, .wind {
    font-size: 30px;
    font-weight: 700;
}
 