body {
  font-family: "Comic Sans MS", cursive, sans-serif;
  background-image: url('/images/froge_background.svg');
  background-size: cover;
  color: #003F5C;
}

h1, h2, h3 {
  color: #465775;
}

a {
  color: #F2A03D;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(250, 250, 250, 0.9);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button, input[type=submit], input[type=reset] {
  background-color: #2E8B57;
  color: white;
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  cursor: pointer;
}

button:hover, input[type=submit]:hover, input[type=reset]:hover {
  background-color: #1A5E40;
}