*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #eef0f1;
}
h1{
    background-color:#3e3632;
    text-align: center;
    font-size: 1.75rem;
    padding: 18px 0px;
    color: #ffff;
}
.container{
    display: flex;
    gap: 35px;
    padding: 30px;
}
.weather-input{
    width: 550px;
}
.weather-input input{
    width: 100%;
    height: 45px;
    outline: none;
    padding: 0 15px;
    margin: 10px 0 15px 0;
    font-size: 1.07rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.weather-input .separator{
    height: 1px;
    width: 100%;
    background: #eef0f1;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.weather-input .separator::before{
    content: "or";
    color: #323a3e;
    font-size: 1.2rem;
    padding: 0 15px;
    background: #eef0f1;
}
.weather-input button{
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    outline: none;
    border: none;
    font-size: 1rem;
    border-radius: 4px;
    color:#ffff;
    background-color: #3e3632;
}
.weather-input .location-btn{
    background-color: #323a3e;
}
.weather-data{
    width: 100%;
}
.current-weather{
    background-color:#3e3632;
    color: #ffff;
    display: flex;
    padding: 20px 70px 20px 20px;
    border-radius: 5px;
    justify-content: space-between;
}
.current-weather h2{
    font-size: 1.7rem;
}
.weather-data h4{
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 500;
}
.current-weather .icon{
    text-align: center;
}
.current-weather .icon img{
    max-width: 120px;
    margin-top: -15px;
}
.current-weather .icon h3{
    margin-top: -10px;
    text-transform: capitalize;
}
.days-forecast h2{
    font-size: 1.5rem;
    margin:20px 0;
}
.weather-cards{
    display: flex;
    gap:20px;
}
.weather-cards .card{
    background-color: #323a3e;
    color: #ffff;
    list-style: none;
    padding: 18px 16px;
    border-radius: 5px;
    width: 20%;
}
.weather-cards .card img{
    max-width: 70px;
    margin: 5px 0 -12px 0;
}