body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0px;
    font-family:'Open Sans',sans-serif;
    background-color:black;
    background-image: url('https://loremflickr.com/g/1280/720/weather');
    background-size: cover;
    
  
}

.card{
    background-color:#000000e2;
    color: aliceblue;
    padding: 2em;
    border-radius: 32px;
    width: 100%;
    max-width: 430px;
    margin: 1em;
}

.search{
    display: flex;
    justify-content: center;
    align-items: center;
}

button{
    margin:0.7em;
    border-radius: 55%;
    border: none;
    height: 45px;
    width: 45px;
    outline: none;
    background: #7c7c7c60;
    color:white;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

button:hover{
    background: #1b4bda5a;
}

.searchBar{
    border: none;
    outline: none;
    padding:0.5em 1em;
    border-radius: 30px;
    background: #7c7c7c60;
    color: white;
    font-family: inherit;
    font-size: 110%;
    width: 200px;
}

h1.temperature{
    margin:0;
    margin-bottom: 0.5em;
}
.flex{
    align-items: center;
    justify-content: center;
}

.description{
    text-transform: capitalize;
    margin-left: 5px;

}
.weather.loading{
    visibility: hidden;
    max-height: 25px;
    position: relative;
}
.weather.loading::after{
    visibility: visible;
    content: "Loading...";
    color: white;
    position: absolute;
    top: 0;
    left: 25px;
}