body {
    background-image: url(photo.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin: 0;
}
#container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-image: linear-gradient(rgba(233, 200, 200, 0.3), rgba(0, 0, 0, 0.2));
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}
h1 {
    color: #DC8449;
    text-align: center;
    font-family: 'Rampart One', cursive;
    font-size: 40px;
}
#header {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
#input {
    background-color: #f1dec0;
    border-radius: 15px;
    border: 3px solid #BAD7E9;
    padding: 15px;
    font-size: 20px;
}
#input:focus {
    background-color: #fff;
}
#when-where {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#city {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
}
#date {
    color: #fff;
    font-size: 25px;
}
#now {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#temprature {
    color: #fff;
    font-size: 110px;
    text-shadow: 5px 10px black;
    margin: 0;
}
#feelsLike {
    color: #fff;
    font-size: 28px;
}
#conditions {
    color: #fff;
    font-size: 30px;
    font-style: italic;
}
#variation {
    color: #fff;
    font-size: 26px;
}