/* styles.css */

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: url('panopticon.jpg') no-repeat center center fixed;
  background-size: 90% ;
  color: #333;
  padding: 20px;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
}

/* Updated navigation bar */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 40px;
}

.nav-logo span {
  font-size: 1.5em;
  font-weight: bold;
  color: #222;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.nav-links a {
  text-decoration: none;
  color: #222;
}

.nav-links a:hover {
  color: #555;
}

main {
  max-width: 900px;
  margin: 40px auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding: 10px;
  font-size: 0.9em;
  color: #777;
}

h1, h2 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.centered-box {
  text-align: center;
  margin-top: 40px;
}

.centered-box form {
  margin-bottom: 20px;
}

.centered-box img.groovy-img {
  max-width: 300px;
  border-radius: 8px;
}
.dice-roller {
  margin-top: 40px;
  text-align: center;
}

.dice-roller select, .dice-roller button {
  margin: 10px;
  padding: 8px;
  font-size: 1em;
}
