body{
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    margin: 0;
    background-color: rgb(59, 154, 218);

}
.weather-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 300px;
    height: 350px;
    text-align: center;
    background-color: aliceblue;
    border-radius: 20px;
}

img{
    background-color: aquamarine;
    border-radius: 10px;
    margin-bottom: 10px;
}

button{
    margin-top: 10px;
    background-color: rgb(187, 223, 28);
    border-radius: 10px;
}
@media screen and (max-width: 1025px) {
	.weather-container  {
		margin: 0 auto;
		padding: 120px 50px;
		font-size: 70%;
		text-align: right;
	}
}

@media screen and (max-width: 360px) {

	
}

    