/* Google fonts (Open Sans) */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body { 

    background-color: white;

    background-image: linear-gradient(to right, #8080800a 1px, transparent 1px ),
                linear-gradient(to bottom, #8080800a 1px, transparent 1px );

    background-size: 14px 24px;
}

h1 { 

    color: white;
    padding: 18px 0;
    text-align: center;
    font-size: 1.75rem;
    background: lightseagreen;
}

.container { 

    display: flex;
    gap: 35px;
    padding: 30px;
}


.weather-input {
    
    width: 550px;
}

.weather-input input { 
    
    width: 100%;
    height: 46px;
    outline: none;
    font-size: 1.07rem;
    border: 1px solid #ccc;
    
    padding: 0 17px;
    margin: 10px 0 20px 0;
    border-radius: 4px;
}

.weather-input .separator { 

    height: 1px;
    width: 100%;
    margin: 15px 0;
    background: #aea0a0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-input .separator::before { 

    content: "or";
    color: black;
    font-size: 1.18rem;
    padding: 0 15px;
    margin-top: -4px;
    background: white;
}

.weather-input button { 

    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    outline: none; 
    border: none;
    font-size: 1rem;
    border-radius:4px;

    color: #fff;
    background: rgb(100, 100, 181);
}

.weather-input .location-btn {

    background: #727b83;
    border-radius: 4px;

}

.weather-data { 

    width: 100%;
}


.current-weather { 

    color: white;
    padding: 20px 70px 20px 20px;
    background: rgb(111, 157, 154);

    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    padding: 20px 70px 20px 20px;

}


.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 h4 { 

    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 { 

    list-style: none;
    color: white;
    padding: 18px 16px;
    border-radius: 5px;
    background: rgb(111, 157, 154);
    width: calc(100% / 5);
}

.weather-cards .card img { 

    max-width: 70px;
    margin: 5px 0 -12px 0;
}

.metar-report { 

    padding: 28px 0;
}


.weather-input .explain-btn { 

    background: rgb(69, 125, 69);
    margin: 15px 0 30px 0;
}


.weather-summary p { 

    margin-bottom: 12px;
}