html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(104.3deg, rgb(253, 243, 243) 10.9%, rgb(248, 231, 231) 27.8%, rgb(160, 112, 161) 101.7%);
    font-family: "Roboto", sans-serif;
}

.weather-app {
    text-align: center;
    padding: 30px;
    background: white;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    border-radius: 10px;
}

.search-form-input {
    background-color: #ececec;
    border: none;
    border-radius: 6px;
    width: 80%;
    padding: 15px 20px;
    font-size: 16px;
}

.search-form-button{
    background: #9A7FAE;
    padding: 15px 30px;
    border: none;
    margin-left: 5px;
    border-radius: 6px;
    color: white;
    font-size: 16px;

}

.city {
    margin: 0;
    font-size: 38px;
    line-height: 48px;
}

.details{
    font-size: 16px;
    line-height: 20px;
    color: rgb(169, 168, 168)

}

.weather-info {
    text-align: left;
}

.weather-app-temp {
    display: flex;
    margin-top: 0px;
    justify-content: flex-end;
}

.temperature-icon {
    font-size: 60px;
    margin-right: 0px;
    margin-top: -70px;
}
.temperature {
    font-size: 60px;
    font-weight: bold;
    text-align: right;
    margin-top: -90px;
}

.celcius{
    font-size: 30px;
    position: relative;
    top: -100px;
}

.weather-forecast {
    display: flex;
    justify-content: space-around;
    margin-top: 5px;
}

.weather-forecast-item{
    padding: 5px;
}

.weather-forecast-day{
    text-align: center;
    color: rgb(39, 33, 36, 0.4);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

.weather-forecast-icon{
    font-size: 30px;
    text-align: center;
    margin-bottom: 8px;
}

.weather-forecast-temp{
    text-align: center;
    color:#c3195d; 
}

.weather-forecast-temp-min{
    text-align: center;
    color: #c3195d;
    opacity: 0.5;
    margin: 0 5px;
}
.day-weather{
    display: flex;
    align-items: center;
    justify-content:center;
    font-size: 12px;
}

footer{
    margin-top: 30px;
    font-size: 14px;
}

hr{
    background-color: #dedfda;
    margin: 20px 0 30px 0;
    border: none;
    height: 1px;
}

.temp{
    color:#c3195d;
    font-weight: bold;
}

