html {
    font-family: 'Open Sans', 'sans-serif';
    color: white;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('https://images.unsplash.com/photo-1518352724948-729151797553?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=692&q=80');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .card {
    background: rgba(0, 0, 0, 0.8);
    padding: 1em;
    border-radius: 10px;
    width: 100%;
    max-width: 420px;
    margin: 1em;
    align-items: center;
    margin-left: -10px;
    margin-right: auto;
  }
  
   .search  {
    display: flex;
    align-items: center;
    justify-content: center;
  
  }
  
  #button {
    outline: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    margin-left: 20px;
    width: 35px;
    height: 35px;
  }
  
  #button:hover  {
    background-color: rgba(172, 234, 255, 0.776);
    width: 45px;
    height: 45px;
    margin-left: 10px;
    padding: 0px;
    transition: .3s; 
    margin-top: -10px;
  }
  
  .search-bar {
    outline: none;
    border: none;
    padding: 0.8em;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  .description {
    text-transform: capitalize;
  }
  
  .weather.loading {
    visibility: hidden;
    max-height: 20px;
    position: relative;
  }
  
  .weather.loading:after {
    visibility: visible;
    content: "Loading...";
    color: white;
    position: absolute;
    top: 0;
    left: 20px;
  }