html {
  height:100%;
}

body {
  margin:0;
}

.center-container {
  margin: auto;
  width: 50%;
  padding: 10px;
  text-align: center;
  height: 2em;
}

.graffiti-font {
  font-family: graffiti-rumbling-font;
  font-size: 300px;
  color: #fbe545;
  font-weight: 100;
}

.google-font {
  margin-top: 2em;
  font-family: google-audiowide-font;
  font-size: 100px;
  color: #fbe545;
  font-weight: 100;
}

.weather-container {
  font-size: medium;
  margin-top: 0.5em;
}

.weather-font {
  font-family: Arial, Helvetica, sans-serif;
  color: #5b5959;
}

.why-container {
  font-size: 50px;
  margin: 1em;
}

.why-font {
  font-family: google-doto-rounded-font;
  color: #214a0c
}

@font-face {
  font-family: graffiti-rumbling-font;
  src: url(/fonts/rumbling.ttf);
}

@font-face {
  font-family: google-audiowide-font;
  src: url(/fonts/audiowide_regular.ttf);
}

@font-face {
  font-family: google-doto-rounded-font;
  src: url(/fonts/doto_rounded_medium.ttf);
}

.bg {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

/* .content {
  background-color:rgba(255,255,255,.8);
  border-radius:.25em;
  box-shadow:0 0 .25em rgba(0,0,0,.25);
  box-sizing:border-box;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  top:50%;
  transform:translate(-50%, -50%);
} */

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}
