body {
  background-color: #f0f8ff;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  color: #2c3e50;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.froge-header {
  background: url('https://froge.ai/assets/froge-banner.svg');
  height: 200px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.froge-button {
  background-color: #2ecc71;
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.froge-button:hover {
  background-color: #27ae60;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer {
  background-color: #34495e;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.footer a {
  color: #ecf0f1;
}