@import url('https://fonts.googleapis.com/css2?family=Lobster:wght@400;700&display=swap');

:root {
  --myyellow: rgb(250, 214, 78);
  --myorange: rgb(244, 177, 60);
  --mylightred: rgb(242, 97, 67);
  --mydarkred: rgb(217, 75, 58);
  --mywhite: rgb(244, 244, 242);
}

html,
body {
  font-size: 8px;
  height: 100%;
}

body {
  background-color: var(--mydarkred);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  max-height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.temp-display {
  text-align: center;
  font-family: 'Lobster';
  height: 60rem;
  width: 60rem;
  color: var(--mywhite);
  text-shadow: 2px 10px var(--mydarkred);
  background-color: var(--myorange);
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#temperature {
  padding-top: 5rem;
  font-size: 20rem;
  line-height: 0;
  margin-bottom: 0;
}

.location {
  font-size: 6rem;
  color: var(--mywhite);
  text-shadow: none;
  line-height: 1rem;
  padding-bottom: 7rem;
}
