/* 
  Froge Dark Theme Stylesheet 
  Perfect for your nightly froge adventures! 🐸 
  Dive into the dark side with these elegant styles. 
  Enjoy and stay froge! 
*/ 

body { 
  background-color: #1e1e1e; 
  color: #cfcfcf; 
  font-family: 'Arial', sans-serif; 
}

a { 
  color: #6bbf59; 
  text-decoration: none; 
}

a:hover { 
  text-decoration: underline; 
}

.navbar { 
  background-color: #282c34; 
  padding: 10px; 
  border-bottom: 2px solid #6bbf59; 
}

.footer { 
  background-color: #282c34; 
  padding: 20px; 
  text-align: center; 
  border-top: 2px solid #6bbf59; 
}

button { 
  background-color: #6bbf59; 
  color: #1e1e1e; 
  border: none; 
  padding: 10px 20px; 
  cursor: pointer; 
  border-radius: 5px; 
}

button:hover { 
  background-color: #578c47; 
}

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

h1, h2, h3 { 
  font-weight: bold; 
  color: #6bbf59; 
}

.froge-link { 
  display: inline-block; 
  margin: 10px; 
  padding: 10px; 
  border: 2px solid #6bbf59; 
  border-radius: 10px; 
  transition: background-color 0.3s; 
}

.froge-link:hover { 
  background-color: #6bbf59; 
  color: #fff; 
}