.banner {
    color: #FFD23F;
    font-family: sans-serif;
}

* {
                  box-sizing: border-box;
                }

                /* Create four equal columns that floats next to each other */
                .column {
                  float: left;
                  width: 20%;
                  padding: 10px;
                  /* Should be removed. Only for demonstration */
                }

                /* Clear floats after the columns */
                .row:after {
                  content: "";
                  display: table;
                  clear: both;
                }

                /* Responsive layout - makes the four columns stack on top of each other instead of next to each other */
                @media screen and (max-width: 600px) {
                  .column {
                    width: 100%;
                  }
                }
button {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
}

button:hover {
  background-color: #ddd;
  color: black;
  border: #555;
}

.previous {
  background-color: #04AA6D;
  color: white;
  border: #555;
}

.next {
  background-color: #04AA6D;
  color: white;
  border: #555;
}

.round {
  border-radius: 50%;
}

#weather-credit {
  position: fixed;
  bottom: 10px;
  left: 10px;
  font-size: 0.85rem;
  color: #555;
  z-index: 100;
}
#weather-credit a {
  color: #555;
  text-decoration: none;
}
#weather-credit a:hover {
  text-decoration: underline;
}