.weather-app {
    background: linear-gradient(to right, pink, orange);
    color: rgb(94, 34, 34);
    font-family: "Hachi Maru Pop", cursive;
    max-width: 700px;
    box-sizing: border-box;
    box-shadow: 5px 5px 20px rgb(54, 9, 9), -5px -5px 10px rgb(54, 9, 9);
}
.app{
    padding: 20px 10px;
}
.date-actual{ 
    margin-bottom: 20px;
    text-align: center;
}
.button-submit {
    background-color: rgb(94, 34, 34);
    color: white;
    border-radius: 5px;
    border: 1px solid rgb(94, 34, 34);
   
}
.button-submit:hover {
    cursor: pointer;
    background-color:rgb(173, 29, 51);
    color: white;  
}
.position{
    font-size: 1.5em;
}
.button-current{
    color: white;
    border-radius: 50%;
    border: 1px solid rgb(94, 34, 34);
    background-color: rgba(238, 160, 173, 0.5);
}
.button-current:hover{
    color:rgb(173, 29, 51);
}
#city-heading{
    font-weight: bold;
    text-align: center;
}
#icon{
    height: 90px;
    width: 90px;
}
#description{
    font-size: 24px;
    line-height: 1;
}
#weather-temp{
   display: flex;
   justify-content: center;
   align-self: center;

}
#temperature{
    font-weight: bold;
    font-size: 50px;
}
.list-details{ 
    padding: 0;
    list-style: none;
    margin: 0 ;
    text-align: center;
}

#units{
    position: relative;
    font-size: 20px;
    top: 14px;
    left:2px;
}
#celsius-feel{
    position: relative;
    font-size: 9px;
    top: -5px;
    left: 1px;
}
#next-days-title{
    text-align: center;
    font-weight: 700;
    margin: 20px auto;
}
.weather-forecast-col{
    margin: 0 auto;
    text-align: center;
    min-width: 15%;
    background: rgba(238, 160, 173, 0.5);
    border-radius:  10px;
    border: 1px solid rgba(243, 227, 227, 0.7);
    padding: 10px 0;
}
.weather-forecast img {
    width: 45px;  
    display: block;
    margin: 0 auto;
}
.weather-forecast .temp{
    font-size: 9px;  
}
.weather-forecast-day{
    font-size: 15px;
    font-weight: 700;
}
.temp-for-max{
    font-weight: 700;
}
.temp-for-min{
   color: rgb(104, 86, 86);
}
#coder{
    font-size: 12px;
    font-family: monospace;
    text-align: center;
    margin-top: 20px;
    color: rgb(94, 34, 34);
    opacity: 0.7;
}
#coder > a {
    text-decoration: none;
    color:rgb(173, 29, 51);
}
#coder > a:hover{
    text-decoration: underline;
   
}
