
.site-header {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

.site-title a {
    color: #d4af37;  /* Golden color for the title */
    text-decoration: none;
    font-size: 1.8em;  /* Adjusted font size */
}

.site-description {
    margin: 10px auto;
    font-size: 1.1em;
    opacity: 0.8;
    padding: 0 20px;
    max-width: 800px;
}

/* Navigation bar styles */
.navbar {
    background-color: #2a2f33;
    text-align: center;
    padding: 10px 0;
}

.nav-links {
    list-style-type: none;
    margin: 0 auto; /* Center aligning the links */
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links li {
    padding: 10px 20px;
}

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

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


/* Main content styling with enhanced decorations */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 20px;
    margin: 0 auto;
    max-width: 1000px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #d4af37) 1 stretch;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); /* soft shadow for depth */
}


/* Media query for smaller screens */
@media (max-width: 768px) {
    .main-content h1 {
        font-size: 1.3em; /* Smaller than default for mobile */
    }
    .main-content h2 {
        font-size: 1.1em; /* Smaller than default for mobile */
    }
    .main-content h3 {
        font-size: 1.1em; /* Smaller than default for mobile */
    }
    .main-content h4 {
        font-size: 1.1em; /* Smaller than default for mobile */
    }
    .main-content h5, .main-content h6 {
        font-size: 1.1em; /* Smaller or equal to default for mobile */
    }
}