/*
 *
 * General Styles
 *
 */

.clearfix:after {
  clear: both;
  content: '';
  display: block;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background: -webkit-linear-gradient(to left, #B5AC49, #3CA55C);
  background: #3CA55C;
  background: linear-gradient(to left, #B5AC49, #3CA55C);
  color: #FFF;
  font-family: 'Josefin Sans', Arial, Helvetica, sans-serif;
  text-shadow: 2px 1px 5px rgba(000, 000, 000, .9);
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  text-decoration: underline;
}

li {
  list-style-type: none;
}

.container {
  margin: 0 auto;
  max-width: 1140px;
  width: 100%;
}

.container:after {
  clear: both;
  content: "";
  display: table;
}

.small-font {
  font-size: 28px;
}

.medium-font {
  font-size: 40px;
}

.fa {
  color: #56c277;
}

/*
 *
 * Weather App Classes
 *
 */

.weather-app-title {
  margin-top: 2%;
  text-align: center;
}

.weather-app {
  margin: 0px 15px;
}

.weather-app-box {
  background: rgba(255, 255, 255, 0.2);
  border: 4px solid #fff;
  display: block;
  margin-left: 15px;
  margin-right: 15px;
  margin: auto;
  margin-top: 20px;
  max-width: 800px;
  min-height: 300px;
  padding: 25px;
  text-align: center;
}

.weather-app-box p:first-letter {
  text-transform:capitalize;
}

.weather-app-box p span {
  color: #FFF;
}

.green-button {
  background:#7cd095;
  border: 2px solid #FFF;
  color: #FFF;
  font-family: 'Josefin Sans', Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 15px 5px;
  padding: 10px;
  text-shadow: 2px 1px 5px rgba(000, 000, 000, .9);
  transition: all 0.3s;
}

.green-button:hover {
  background:#56c277;
}

.wunderground-logo-mark {
  padding-top: 10px;
  text-align: center;
}

.wunderground-logo {
  margin: auto;
  max-height: 100px;
  max-width: 150px;
}