/* Styles for Froge Forum */
body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #e0f7fa;
  color: #00695c;
}

h1, h2, h3 {
  color: #004d40;
  text-shadow: 1px 1px 2px #004d40;
}

a {
  color: #00796b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.button {
  background-color: #004d40;
  color: #e0f7fa;
  border: none;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button:hover {
  background-color: #e0f7fa;
  color: #004d40;
}

#froge-banner {
  width: 100%;
  height: auto;
  background-image: url('/images/happy-froge.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

footer {
  font-size: 12px;
  color: #004d40;
  text-align: center;
  padding: 10px 0;
}  

@media screen and (max-width: 800px) {
  body {
    background-color: #b2dfdb;
  }
}