/* Mountain theme styles for froge.ai */
body {
  background-color: #e0f7fa;
  color: #006064;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3 {
  color: #004d40;
  text-transform: uppercase;
}

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

a:hover {
  color: #004d40;
}

button {
  background-color: #004d40;
  color: #e0f7fa;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #00796b;
}

footer {
  background-color: #004d40;
  color: #e0f7fa;
  text-align: center;
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  h1 {
    font-size: 1.5em;
  }
}