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

:root {
    --BGCOLOR: #ebfffc;
}


body {
    background: #222;
}

.container{
    width: 90%;
    max-width: 480px;
    background: linear-gradient(120deg, aqua, black, green);
    color: white;
    margin: 100px auto 0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: solid 1px blue;
    
}

.search {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search input {
    border: 0;
    outline: 0;
    height: 50px;
    border-radius: 30x;
    background:var(--BGCOLOR) ;
    color: #555;
    padding: 10px 35px;
    border-radius: 25px;
    flex: 1;
    margin-right: 16px;
    font-size: 16px;
    cursor: pointer;
    border: solid 1px #222;
}

.search button {
    border: 0;
    outline: 0;
    background:var(--BGCOLOR) ;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: solid 1px #222;
}

.search img {
    width: 20px;
    
}

.weather-icon {
    width: 160px;
    margin-top: 10px;
}

.weather h1 {
    font-size: 70px;
    font-weight: 500;
    margin-bottom: 0;
}

.weather h2 {
    font-size: 25px;
    font-weight: 600;
    margin-top: 0;
    text-shadow: black 1px 1px;
    
}

.details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 40px;
    
}

.col {
    display: flex;
    align-items: center;
    text-align: left;
}

.col img {
    width: 40px;
    margin-right: 7px;
}

.humidity, .wind {
    font-size: 25px;
    margin-top: -6px;
}

hr {
    border: 1px solid rgb(121, 100, 199);
    margin: 30px;
   
}
.forecast {
    display: flex;
    margin-left: 15px;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    
}

.forecast img {
    width: 50px;
    margin: 8px;
    
}

.range {
    display: flex;
    align-items: center;
    text-align: left;
    margin-left: 15px;
}

.highLow {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}


.low, .high {
    margin-left: 2px;
}
