html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}
/* Modify the primary button color */
/* Default button color */
.btn-primary {
    background-color: #003945; /* Set the background color to #003945 */
    border-color: #003945; /* Set the border color to #003945 */
    color: white; /* Keep text color as white */
 
 
}
.button-container {
    display: grid;
    place-items: center; /* Centers content both horizontally and vertically */
    height: 100px; /* Set height for proper centering */
}
 
    /* Hover effect */
    .btn-primary:hover {
        background-color: #2d87a7; /* Set the hover background color to #2d87a7 */
        border-color: #2d87a7; /* Set the hover border color to #2d87a7 */
    }


    /* Modify the focus state (when the button is clicked/focused) */
    .btn-primary:focus, .btn-primary.focus {
        box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5); /* Green shadow effect */
    }
/* Set the background for the entire website */
body
{
    background-image: url('/images/back.jpg'); /* Replace with your actual image path */
    background-size: cover; /* Ensure the image covers the entire screen */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image repetition */
    background-attachment: fixed; /* Keeps the background fixed during scroll */
 
}
    body.no-background {
        background: none !important; /* Remove background */
    }
/* Use a media query for the print page */
@media print {
    body {
        background: none; /* Remove background for the print page */
    }

    /* Optionally, hide the background for other print-specific elements */
    #printableArea {
        background: none; /* Remove any background set on the printable area */
    }
}