body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: grid;
    font-family: 'Markazi', 'Courier New', Courier, monospace;
    background-image: linear-gradient(to bottom right , #7bc7dd , #62a1c7 , #528ab4 );
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container {
    display: grid;
    grid-template: auto / 1fr;
    grid-template-areas: 
    "City Weather";
    gap: 10px;
    border: #fff;
    justify-items: center;
    align-items: center;
}

.weatherApp {
    margin: 20px;
    font-family: 'Markazi';
}

.cityInput {
    width: 250px;
    height: auto;
    border-radius: 15px;
    padding: 15px;
    font-family: 'Markazi';
    font-size: x-large;
    border: none;
}

button{
    padding: 15px;
    border-radius: 15px;
    font-family: 'Markazi';
    font-weight: 900;
    background-color: #95d6ea;
    cursor: pointer;
    font-size: 1.5rem;
    border: none;
}

button:hover {
    background-color: #95d6eaa2;
}

.weather-wrapper {
    background: linear-gradient(to bottom right,  #74feff, #9cfeff , #bbffff , #d3ffff , #eeffff );
    margin-top: 50px;
    width: 350px;
    height: fit-content;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 2px 2px 5px #95d6ea;
    align-items: center;
    flex-direction: column;
}


h1{
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Markazi';
}
p{
    font-size: 1rem;
    margin: 2px 0;
    font-family: 'Markazi';
}

.weatherImg{
    margin: 0;
    font-size: 7.5rem;
    font-family: 'Markazi';
}

.showHumidity{
    font-weight: bold;
    margin-bottom: 25px;
    font-family: 'Markazi';
}

.showError{
    font-size: 2.5rem;
    font-weight: bold;
    color: hsla(0, 0%, 0%, 0.75);
    font-family: 'Markazi';
    text-align: center;
}

.showCity, .showTemp{
    font-size: 3.5rem;
    font-weight: bold;
    color: hsla(0, 0%, 0%, 0.8);
    margin-bottom: 25px;
    font-family: 'Markazi';
}

.showDescription{
    font-style: italic;
    font-weight: bold;
    font-size: 2rem;
    font-family: 'Markazi';
}

.showError{
    font-size: 2.5rem;
    font-weight: bold;
    color: hsla(0, 0%, 0%, 0.75);
    font-family: 'Markazi';
}


/* added */

.forecast-wrapper {
    background: linear-gradient(to bottom right,  #74feff, #9cfeff , #bbffff , #d3ffff , #eeffff );
    margin-top: 50px;
    width: 600px;
    height: fit-content;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 2px 2px 5px #95d6ea;
    align-items: center;
    flex-direction: row;
}

.forecast-item {
    width: 18%;
    margin: 10px;
    text-align: center;
    border: 1px solid #528ab4;
    padding: 10px;
    border-radius: 5px;
}

.favorite-cities-wrapper {
    background: linear-gradient(to bottom right,  #74feff, #9cfeff , #bbffff , #d3ffff , #eeffff );
    margin-top: 50px;
    width: 350px;
    height: fit-content;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 2px 2px 5px #95d6ea;
    align-items: center;
    flex-direction: column;
}

.favorite-city {
    cursor: pointer;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 10px;
}

.favorite-city:hover {
    background-color: #e0e0e0;
}
