/* Font Face Declarations */
@font-face {
    font-family: 'CinzelDecorativeBlack';
    src: url('CinzelDecorative-Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CinzelDecorativeBold';
    src: url('CinzelDecorative-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CinzelDecorativeRegular';
    src: url('CinzelDecorative-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Body Styles */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 75%;
    text-align: center;
    font-family: 'CinzelDecorativeBold', Arial, sans-serif;
    color: #ffffff;
    background: url('bogcover.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column; /* Column layout for main content and footer */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header {
    background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
    color: white; /* Ensures text is legible against the dark background */
    padding: 20px; /* Optional: Adds some spacing inside the main element */
}

nav a {
    color: #dddddd;
    text-decoration: none;
    padding: 0.5em;
}

nav a.active {
    color: #ffffff;
    text-decoration: underline;
}

.page-title {
    text-align: center;
    font-size: 3em;
    background: none; /* Remove semi-transparent background */
}

.content {
    margin-top: 160px; /* Adjust this value for the desired top buffer */
    color: #E60026; /* Crimson color */
    font-weight: bold; /* Keeps the text bold */
    text-align: center;
    width: 80%; /* Adjust width as needed */
    background-color: rgba(0, 0, 0, 0.75);
    font-size: 25px; /* Double the text size assuming default is 16px */
}

.gnomes-list {
  margin-top: 160px;
  background-color: rgba(0, 0, 0, 0.75);
}

.gnome {
  color: #F4F5FA;
  font-size: 23px;

}

main {
    background-color: rgba(0, 0, 0, 0.75); /* Black with 50% opacity */
    color: white; /* Ensures text is legible against the dark background */
    padding: 20px; /* Optional: Adds some spacing inside the main element */
}

footer {
    text-align: center;
    padding: 1em;
    background: none;
    margin-top: auto; /* Pushes the footer to the bottom */
}
