body {
    background-image: url("/media/clouds.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: "Rubik", sans-serif;
}

.weather-app-content {
    background: #182530;
    background: linear-gradient(179deg, rgba(24, 37, 48, 1) 38%, rgba(40, 44, 48, 1) 48%, rgba(106, 106, 115, 1) 82%);
    color: rgb(232, 232, 236);
    max-width: 640px;
    margin: 50px auto;
    padding: 30px;
    box-shadow: 10px 10px 5px rgb(31, 61, 71);
    border-radius: 5px;
}

header {
    border-bottom: 1px;
    padding: 30px 0 0 0;
}

.search-form {
    margin: -30px 0 0 0;
}

.search-form-input {
    background: rgb(52, 52, 108);
    color: #7ca1c0;
    border: none;
    border-radius: 10px;
    width: 80%;
    padding: 15px;
    font-size: 15px;
}

.search-form-button {
    background-color: #1e3b52;
    color: #bbddf9;
    border: none;
    border-radius: 10px;
    width: 15%;
    padding: 15px;
}

.weather-info {
    display: flex;
    justify-content: space-between;

}

main {
    padding: 30px 0;
}

h1 {
    color: #5998ca;
}

.current-city-details {
    text-align: center;
    font-size: 10px;
    line-height: 1.5px;
    margin: -20px auto;
}



.current-condition {
    margin: 20px auto;
}

.weather-info {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}

.weather-temperature {
    display: flex;
}

.temperature-value {
    font-size: 120px;
    font-weight: 300;
    margin-left: 6px;
    margin-top: -18px;
}

.temperature-icon {
    width: 100px;
    margin-left: 6px;
    margin-top: -38px;
    
}

.temperature-degree {
    font-size: 28px;
    margin-left: 6px;
    margin-top: -43px;

}

.current-weather-details {
    line-height: 50px;
    margin-top: -18px;
}

.description {
    font-size: 20px;
    margin-left: -6px;
    padding: 30px;
}

.weather-forecast {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 10px;
    gap:15px;

    /* font-size: 10px;
    margin-bottom: 20px;
     */
}

.weather-forecast-day {
    font-size: 10px;
    border: 1px solid aliceblue;
    background: rgba(240, 248, 255, 0.2);
    border-radius: 9px;
    padding: 10px;
}

.forecast-day {
    text-align: center;
    color: aliceblue;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    /* line-height: 1px;
    margin-top: 10px; */
}

.forecast-icon {
    width: 68px;
    height: 68px;
    display: block;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
}

.forecast-highs-lows {
    text-align: center;
    color: #bbddf9;
    display: flex;
    margin-top: 20px auto;
    justify-content: center;
}

.forecast-high-low {
    padding: 0 10px;
}

a {
    color: #09385f;
}

footer {
    text-align: center;
    color: aliceblue;
    border-top: 1px solid rgb(232, 232, 236);
    padding: 10px 0 0 0;
    margin: 0 auto;
    font-size: 10px;
    font-weight: 300px;
}