*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: aliceblue;
}

.page-heading {
  width: fit-content;
  margin: 8px auto;
}

.weather-context-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.weather-context {
  display: flex;
  gap: 4px;
  background-color: lightgreen;
  width: fit-content;
  padding: 8px;
  text-align: center;
  border-radius: 8px;
}

.get-error {
  color: red;
}

#location {
  width: clamp(16em, 20vw, 32em);
}

.weather-info-container {
  background-color: aqua;
  text-align: center;
  margin: 16px auto;
  border-radius: 20px;
  width: clamp(20em, 30vw, 80em);
  padding: 16px 8px;
}

.weather-icon {
  width: 30%;
  padding: 16px 0;
}