body{
    background-image: url(https://images.unsplash.com/photo-1721075671187-14a9ad694eef?q=80&w=2954&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-repeat: no-repeat;
    background-size: cover;
    background-color:#F0F8FF;
}
*{
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    
}

#container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-height: 100vh;
    justify-content: center;
    align-items: center;

}

#header{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


#input{
    border-radius: 20px 0 0 20px;
    border: 3px solid #B0C4DE;
    padding: 10px;
    font-size: 15px;
    background-color: #eaecec;
    
}

#input:focus {
    background-color: #FFF;
    border-color: #004687;
    outline: none;
}

.btn{
    border: none;
    border-radius: 20px;
    border-radius: 0 20px 20px 0;
    padding: 10px;
    background-color: #B0C4DE;
    font-size: 15px;
    color: #FFF;
}

#when-where{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#city{
    color: #FF69B4;
    font-size: 50px;
    font-family: "Dancing Script", cursive;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 10px;

}

#date{
    color: #4682B4;
    font-size: 24px;
    margin-top: auto;
}

#now{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#temperature{
    color: #F0F8FF;
    font-size: 110px;
    margin: 0;
    font-weight: bold;
    text-shadow: 5px 7px black;
}

#feelsLike{
    color: #4682B4;
    font-size: 20px;

}

#conditions{
    color: #4682B4;
    font-size: 32px;
    font-weight:bold;
    font-style: italic;
}

#variation {
    color: #4682B4;
    font-size: 20px;
}