body{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(87, 71, 71);
    background-image: url("https://source.unsplash.com/700x600/?weather");
    opacity: 0.7;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-clip: border-box;

}
.card{
    background: #000000d0;
    opacity: 0.9;
    color: white;
    padding: 1rem;
    border-radius: 0.55rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: start;
    text-transform: capitalize;
    
}
.search{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
input{
    appearance: none;
    outline: none;
    border: none;
    border-radius: 3em;
    width:fit-content;
    padding:1em;
    color: black;
    font-size: small;
    font-weight: bold;

}
.description{
    display: flex;
    margin-left: 1em;
    align-items: center;
}
button{
    height: 3em;
    width: 3em;
    outline: none;
    margin-left: 1em;
    border-radius: 100%;
}
.weather.loading{
   visibility: hidden;
   max-height: 1rem ;
   position: relative;

}
.weather.loading:after{
    visibility: visible;
    position: absolute;
    content: "Loading...";
    top: 0;
}
.desc{
    display: flex;
    /* justify-content: center; */
    /* align-items: ; */
    text-align: flex-start;
}
.geolocation{
    margin-top: 1em;
    color: white;
    font-weight: bold;
    font-size: large;
}
.message{
    display: none;
    margin-left:2em ;
    color: red;
    font-weight: bold;
    /* display: flex; */

    /* justify-content:flex-start; */
}
.message.show{
    display: flex;
}
