#container{
    background-color: blue;
    color: white;
    margin: 0 0 0 0;
}
#container h3{
    text-align: center;
}
#container input{
    display: flex;
    justify-content: center;
    margin: 10px 10px 0 43%;
    background-color: white;
}
#container button{
    margin: 10px 0 0 45%;
}
#displayWeather{
    background-color:white;
    text-align: center;
}
#weatherResult{
    color: darkblue;
    align-items: center;
    font-family: fantasy;
}
.btn {
	box-shadow:inset 1px 0px 0px 0px darkblue;
	background:linear-gradient(to bottom, darkblue 5%, darkblue 100%);
	background-color: darkblue;
	border-radius:28px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family: 'Times New Roman', Times, serif;
	font-size:16px;
	padding:16px 41px;
	text-decoration:none;
    text-shadow:0px 1px 0px darkblue;
}

.btn:active {
	position:relative;
	top:1px;
}
.card{
 background-color: white;
 margin: 50px 50px 50px justify;
}

footer{
    background-color: darkblue;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16;
    color: white;
    margin: 0 0 0 0;
    padding: 50px;
    text-align: center;
}
@media screen and (max-width:500px){
    #container input{
        display: flex;
        justify-content: center;
        margin: 5px 5px 0 33%;
        background-color: white;
    }
    #container button{
        margin: 10px 0 0 40%;
    }
}