body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #222;
  font-family: "Roboto Mono", monospace;
  background-image: url("https://source.unsplash.com/1600x900/?nature,water");
  font-size: 120%;
}

.card {
  background: #000000;
  opacity: 0.8;
  color: white;
  padding: 2em;
  border-radius: 30px;
  width: 100%;
  max-width: 420px;
  margin: 1em;
}

.search {
  display: flex;
  align-items: center;
  justify-content: center;
}

h1.temp {
  margin: 0;
  margin-bottom: 0.5em;
}

button {
  margin: 0.5em;
  border-radius: 50%;
  border: none;
  height: 2.5em;
  width: 2.5em;
  outline: none;
  background-color: rgb(33, 54, 73);
  color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

button:hover {
  background: #7c7c7c2b;
}

input.search-bar {
  border: none;
  outline: none;
  padding: 0.5em 1em;
  border-radius: 18px;
  background-color: rgb(33, 54, 73);
  color: white;
  font-family: inherit;
  font-size: 105%;
  width: 70%;
}

.description {
  text-transform: capitalize;
  margin-left: 8px;
}

.flex {
  display: flex;
  align-items: center;
}

.weather.loading {
  visibility: hidden;
}
