h1{
    font-family: 'Lobster';
    font-weight: lighter;
    font-size: 60px;
    margin-top: 15px;
    margin-left: 20px;
    color: rgb(73, 24, 119);
}

body{
    background-color: rgb(200, 190, 199);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
}
main{
    padding: 30px 0;
    
}
.weather-boxing{
    background-color:rgb(228, 219, 228);
    max-width: 600px;
    margin: 45px auto;
    box-shadow: 0 30px 50px rgba(79, 79, 87, 0.6);
    border-radius: 16px;
    padding: 30px;
}
.weather-app-data{
    font-size: 15px;
    
}
.search-bar{
    border: none;
    border-radius: 6px;
    width:80%;
    padding:15px 15px;
    font-size: 16px;
}
.search-button{
    color: blueviolet;
    border-color: rgb(73, 24, 119);
    border-radius: 6px;
    width:18%;
    padding: 15px 20px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(136, 136, 145, 0.6);
}
.search-button:hover{
    color: rgb(226, 226, 218) ;
    background-color: blueviolet;
    border-color: black;
    cursor: pointer;

}

.weather-info{
    color: rgb(81, 80, 82);
    
}
.weather-info strong{
    color: blueviolet;

}
.weather-app-temperature{
    font-family:'Lobster';
    font-size: 60px;
    color: rgb(73, 24, 119);
    
    
}
.weather-app-details {
    display: flex;
    justify-content: space-between;
    align-items: center; 
}
.weather-icon{
    font-size: 40px;
    color: rgb(73, 24, 119);;
    
}
.weather-degree-icon{
    font-size: 40px;
    color: rgb(73, 24, 119);
    
    font-family: Arial, Helvetica, sans-serif;
    
}
.weather-temperature-container{
    display: flex;
    align-items: center; 
    margin-right: 40px;
}
.weather-forecast{
    display: flex;
    justify-content: space-around;
   
}
.weather-forecast-date{
    text-align:center;
    font-size: 20px;
    font-family: 'Lobster';
    color:rgb(73, 24, 119);
    margin-top: 10px;
}
.weather-forecast-icon{
    text-align: center;
    width: 100%;
    margin-top: 10px;

}
.weather-forecast-temperature{
    text-align: center;
    
    justify-content: center;
    margin-top: 10px;
}
.weather-forecast-temperatures{
    text-align: center;
    color: blueviolet;
    margin:10px;
}
.weather-forecast-temperatures strong {
    text-align: center;
    color: rgb(73, 24, 119);
    margin: 10px;
}
footer{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 10px;
    text-align: center;
}