

/* 
primary colors:
#8d8741;
#fbeec1
#bc986a
*/


/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fbeec1;
}

a {
    color: #659dbd;
}

h2 {
    text-align: center;
    color: #5f6061;    
}

/* Header styles */
header {
    background-color: #659dbd;
    color: white;
    text-align: center;
    border-top: 3px solid #8d8741;
    border-bottom: 3px solid #8d8741;
    padding: 10px;
}

.header-image {
    text-align: center;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}


.title-text {
    font-size: 50px;
    font-weight: 900; 
    padding: 10px;
}

.title-text a {
    text-decoration: none;
    color: #5f6061;
}

.title-subtitle {
    font-size: 16px;
    color: #5f6061;
}

.navbar {
    background-color: #8d8741;
    border-radius: 10px;
    margin: 20px 0;
    color: #5f6061;
}

.navbar-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar-menu li {
    margin: 0 10px;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

.navbar-menu a:hover {
    background-color: #daad86;
}

/* Main content styles */
main {
    padding: 20px;
}

.content {
    margin: 0 auto;
    max-width: 800px;
}

/* Footer styles */
footer {
    background-color: #659dbd;
    color: #5f6061;
    text-align: center;
    border-top: 3px solid #8d8741;
    border-bottom: 3px solid #8d8741;
    padding: 20px;
}

.footer img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 14px;
    margin-top: 10px;
}


.title-subsubtitle {
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.section {
    max-width: 800px;
    border: 1px solid #659dbd;
    border-radius: 5px;
    padding: 20px;
    margin: 0 auto;
  }

  
.section h1 {
    color: #5f6061;
    text-align: center;
}
.section h2 {
    text-align: center;
    color: #5f6061;
}


.home-table {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
}

.home-table td {
    padding: 10px;
    border: none;
}

.home-table td:first-child {
    width: 200px;
    font-weight: bold;
}

.home-table td a {
    color: #659dbd;
    text-decoration: none;
}

.home-table td:last-child {
    width: calc(100% - 200px);
}


.shaded-row {
    background-color: #f2f2f2; /* Specify your desired background color */
}
