body {
    background-color: aliceblue;
    padding: 10px;
}

.container {
    background-color: white;
    margin: 30px;
    padding: 20px;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
    width: 60%;
    margin: 0 auto;
}

header{
    margin-bottom: 30px;
}

form {
    display: flex;
    justify-content: space-around;
}

.input-write {
    flex-direction: row;
    background-color: rgb(240, 248, 255);
    border: none;
    padding: 10px;
    width: 98%;
}

.city {
    border-radius: 5px;
    background-color: rgb(240, 248, 255);
    height: 30px;
    width: 75%;
    padding: 5px;
}

.btn-search {
    width: 20%;
    height: 30px;
    display: flex;
    padding: 5px;
    background-color: rgb(23, 147, 255);
    border-radius: 5px;
}

.btn {
    flex-direction: row;
    height: 30px;
    padding: 5px;
    background-color: rgb(23, 147, 255);
    color: white;
    width: 100%;
    height: 30px;
    border: none;
}

.info-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.details {
    flex-direction: row;
    font-size: small;
    color: gray;
}

.par {
    flex-direction: row;
    margin: 0 auto;
    align-self: center;
}

.temp {
    font-size: 50px;
    font-weight: bold;
    margin: 0px;
    margin-right: 45px;
    margin-left: 10px;
    height: 50px;
    

}

.icon-temp {
    display: flex;
    flex-direction: row;
}

.icon {
    font-size: 30px;

}

.weather-info{
    display: flex;
    flex-direction: row;
    padding-left: 0px;
}

.icon-forecast{
    font-size: 40px;
    margin: 15px;
}

.weekdays{
    list-style: none;
    width: 20%;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: gray;

}

.weekdays-icon{
    font-size: 30px;
    margin: 10px;
}

.weekdays-temp{
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
    width: 100%;
    color: rgb(255, 82, 111);
    
    
}

footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
}