* {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #fff;
}

.container {
  max-width: 1000px;
  height: 100%;
  padding: 1em;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.weather-data {
  text-align: center;
}

.location {
  font-size: 2em;
  font-weight: bold;
}
.weekly {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-between;
}
.weekly div {
  margin-bottom: 1em;
}
.title {
  margin-top: 3em;
}
.day {
  font-weight: bold;
}

.weekly .icon {
  width: 120px;
  height: 60px;
}
