body {
    color: #004225; /* British Racing Green */
    background-color: #Fdfaee; /* Vanille */
}

a {
    color: #004225; /* British Racing Green for hyperlinks */
    text-decoration: none; /* Remove underline from all links */
}

a:hover {
    color: #002211; /* A darker shade of British Racing Green for hover */
}

.bg-custom {
    background-color: #004225; /* British Racing Green */
}

.text-custom {
    color: #F3E5AB; /* Vanille */
}

/* Button styling */
.btn-custom {
    background-color: #F3E5AB ; /* Vanille background */
    color: #004225 !important; /* British Racing Green text - changed this from Vanille to British Racing Green */
    border: none; /* No border */
    padding: 10px 15px; /* Adjust for desired padding */
    font-weight: bold; /* Bold text */
}

.btn-custom:hover {
    background-color: #Fdfaee !important; /* Slightly different shade of Vanille for hover - added !important */
    color: #002211 !important; /* A darker shade of British Racing Green for hover - added !important */
}

.center-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px; /* Adjust as per your preference */
    max-width: 300px; /* Set a maximum width for the logo. Adjust as per your preference */
    width: 100%; /* Make sure it takes up the full width up to the max-width */
}