body {
    background-color: #f9f7fe;
    font-family:"Roboto" sans-serif;
}
.app{
    background:white ;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0,08);
    border-radius: 10px;
    padding: 30px;
}
.search-form-input {
background-color: #f9f7fe;
border: none;
border-radius: 6px;
width: 80%;
font-size: 16px;
padding: 15px 20px;
}
.search-form-button{
    background-color: blueviolet;
    padding: 15px 20px;
    border-radius: 6px;
    color: white;
    border: none;
    font-size: 16px;
    margin-left: 5px;
}
header{
    border-bottom: 1px solid floralwhite;
padding: 0 0 30px 0;

}
footer{
    border-top: 1px solid #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 14px; 
    color: rgba(0, 0, 0, 6);
    font-weight: 300;
    font-family: Arial, Helvetica, sans-serif;

}
.app-data {
    display: flex;
    justify-content: space-between;
}
main{
    padding: 30px 0;
}
.weather-temperature-container{
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.forecast-icon{
    font-size: 48px;
    text-align: center;
    margin-top: 10px;
}
.forecast-temperatures{
    font-size: 16px;
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    line-height: 20px;
    display: flex;
    justify-content: center;
}

.weather-forecast{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    position: relative;
    bottom: 0%;
}

.forecast-temperature{
    padding: 0 10px;
}

.forecast-date{
    font-size: 16px;
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    line-height: 20px;
}

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

}
.details{
font-size: 16px;
color: rgba(30, 33, 66, 0.4);
line-height: 24px;
font-weight: 500;
}
.details strong{
    color: rgb(228, 28, 235);
}
.weather-temperature{
    font-size: 88px;
    font-weight: bold;
}
.weather-icon{
    font-size: 44px;
    margin-top: 22px;
}
.weather-unit{
    margin-top: 10px;
    font-size: 28px;
}
a { color: #a93ee7;

}
