body {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  color: #003;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  /* width: 170px; */
}
.container {
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  display: table;
  margin: 0 auto;
  width: 160px;
}

.container img, .container .temperature {
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  display: table-cell;
  width: 80px;
}
.container img {
  display: table-cell;
  height: 80px;
}
.container .temperature {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 120px) {
  .container {
    margin-top: 10px;
    width: 100%;
  }
  .container img, .container .temperature {
    width: 60px;
  }
  .container img {
    height: 60px;
  }
  .container .temperature {
    font-size: 20px;
  }
}
@media (max-width: 80px) {
  .container {
    margin-top: 15px;
  }
  .container img, .container .temperature {
    width: 40px;
  }
  .container img {
    height: 40px;
  }
  .container .temperature {
    font-size: 16px;
  }
}
