/* styles.css */

* {
    box-sizing: border-box;
}

body {
    text-align: center;
    background: #ADD8E6;
    font-family: Arial;
    background-image: url("https://images.unsplash.com/photo-1517685352821-92cf88aee5a5?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=967&q=80");
    background-size: cover;
}

h1 {
    color: #3498eb;
    text-shadow: 2px 2px #0a4157;
}

h2 {
    color: #5b88d6;
    text-shadow: 2px 2px #0c4961;
}

input[type="text"] {
    font-size: 1.5em;
    padding: 10px;
    border: solid 5px #c9c9c9;
    transition: border 1s;
    border-radius: 4px;
}

input[type="text"]:hover, input[type="text"].focus {
    border: solid 5px #969696;
}

button {
    margin-top: 20px;
    color: #28aadc;
    background-color: #fff;
    border: 2px solid #28aadc;
    border-radius: 4px;
    padding: 12px 18px;
}

button:hover {
    background: #28aadc;
    color: #fff;
}

#weather {
    margin: 50px auto;
    margin-right: 25%;
    margin-left: 25%;
    padding: 20px;
    background: #dadada;
    border: 5px solid #969696;
    display: none;
    border-radius: 4px;
}