* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

/* Body */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  margin: 0; }

/* header */
header {
  font-size: 50px;
  text-align: center; }

header p {
  margin: 0; }

div.headerWra {
  background-color: #c0e5e5;
  padding: 1.3rem 0 1.3rem 0; }

/* main */
main h1 {
  text-align: center; }

section#weatherforecast {
  display: grid;
  grid-template-columns: 1fr; }

main div {
  background-color: rgba(128, 128, 128, 0.507);
  text-align: center;
  margin: .8rem .5rem .5rem .5rem; }

section#weatherforecast span {
  font-size: 20px;
  background-color: #3a3a3a;
  color: white; }

main p {
  font-size: 35px;
  margin-bottom: 1.5rem; }

main img {
  text-align: center;
  background-color: gray;
  border-radius: 10px;
  padding-left: 5px;
  padding-right: 5px; }

@media only screen and (min-width: 35rem) {
  section#weatherforecast {
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%; } }
@media only screen and (min-width: 60rem) {
  section#weatherforecast {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr; } }
