/* Frog Theme Stylesheet */

body {
  background-color: #e0f7fa;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #00796b;
}

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

a {
  color: #388e3c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  background-color: #009688;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

.frog-banner {
  width: 100%;
  height: 200px;
  background-image: url('/images/froge-banner.svg');
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 600px) {
  body {
    background-color: #00796b;
  }
}