:root {
  --background-color: rgb(240, 240, 240);
  --text-color: rgb(0, 0, 0);
  --border-color: rgb(229, 229, 229);
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    'Open Sans', 'Helvetica Neue', sans-serif;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

body {
  width: 100dvw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--background-color);
}

.container {
  width: 360px;
  padding: 30px;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 8px 32px var(--border-color);
}

#location {
  font-size: 24px;
  margin-bottom: 20px;
}

#temperature {
  font-size: 64px;
  font-weight: bold;
  margin: 20px 0;
}

#condition {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 20px;
  margin-bottom: 20px;

  img {
    width: 60px;
    height: auto;
  }
}

#details {
  margin-top: 30px;
  padding-top: 20px;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
}
