*{
    font-family: "Rimouski";
}

body{
    background-color: #576492;
}

.container{
    width: 389px;    
    background-color: #FFF;
    
    display: block;
    margin: 0 auto;
    
    border-radius: 10px;
    padding-bottom : 50px;
}

.app-title {
    width: 100%; /* Use full width of the container */
    height: 50px;
    display: flex;
    align-items: center;  /* Center vertically */
    justify-content: center; /* Center horizontally */
    border-radius: 10px 10px 0 0;
}

.app-title p {
    padding: 15px;
    margin: 0;
    font-size: 1.2em;
    color: #293251;
}


.notification{
    background-color: #f8d7da;
    display: none;
}

.notification p{
    color: #721c24;
    font-size: 1.2em;
    margin: 0;
    text-align: center;
    padding: 10px 0;
}

.weather-container {
    width: 389px;
    height: 260px;
    background-color: #F4F9FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.weather-icon{
    width: 300px;
    height: 128px;
}

.weather-icon img{
    display: block;
    margin: 0 auto;
}

.temperature-value{
    width: 300px;
    height:60px;
}

.temperature-value p{
    padding: 0;
    margin: 0;
    color: #293251;
    font-size: 4em;
    text-align: center;
    cursor: pointer;
}



.temperature-value span{
    color: #293251;
    font-size: 0.5em;
}



.temperature-description p{
    padding: 8px;
    margin: 0;
    color: #293251;
    text-align: center;
    font-size: 1.2em;
}



.pressure p{
    margin: 0;
    padding: 0;
    color: #293251;
    text-align: center;
    font-size: 0.8em;
}


.location p{
    margin: 0;
    padding: 0;
    color: #293251;
    text-align: center;
    font-size: 0.8em;
}

.forecast-container {
    width: 369px;
    background-color: #FFF;
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
}

.forecast-title {
    text-align: center;
    font-size: 1.2em;
    color: #293251;
}

.forecast {
    display: flex;
    justify-content: space-between;
}

.forecast p {
    font-size: 1em;
    color: #293251;
}
