
/* Fonts from Google Fonts - Combined Import */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700|Merriweather:400,700");

/* General Content */
body {
  background: url("https://raw.githubusercontent.com/gasterikuri/project-black-raven-site/main/image_2025-05-30_201919344.png") 
    no-repeat center center fixed;
  background-size: cover;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #333;
  padding: 20px;
  max-width: 100%;
  margin: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0.97;
}

/* Headers */
h1, h2 {
  font-family: "Merriweather", serif;
  color: #444;
}

h1 {
  text-shadow: 2px 2px rgba(255, 99, 71, 0.7);
}

/* Image Styling */
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 20px 10px;
  display: block;
}

/* Navbar */
ul.nav {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px;
  background-color: rgba(51, 51, 51, 0.8);
  border-radius: 10px;
}

ul.nav li {
  flex-grow: 1;
  text-align: center;
}

ul.nav a {
  display: block;
  width: auto;
  min-width: 120px;
  padding: 10px;
  margin: 5px;
  color: #fff;
  background-color: #444;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

ul.nav a:hover {
  background-color: #ff6347;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

table td {
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 8px;
}

/* Buttons */
button {
  font-size: 18px;
  color: #ffcc00;
  background-color: #222;
  border: none;
  padding: 12px 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

button:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 12px;
  position: sticky;
  bottom: 0;
  width: 100%;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}
