/* These styles are generated from project.scss. */

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}
/* project.css */

/* Setting Bootstrap variable for body font size */
:root {
    --bs-body-font-size: 1.1rem;
}

/* Set white background and semi-transparent background image for the body */
body {
    position: relative;
    background-color: white;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/pulse-bg.jpg');
    background-repeat: repeat;
    opacity: 0.5; /* Set the opacity to 50% */
    z-index: -1; /* Ensure the background image stays behind the content */
}
.main-content {
    flex-grow: 1;
}
.nav-link {
    padding-left: 25px !important;
    padding-right: 20px !important;
    font-size: 1.125rem !important; /* Adjust this value as per your need */
  font-weight: bold !important;
}
h2 {
    padding-top: 25px !important; /* Adjust this value as per your need */
}

.footer {
    pdding-top: 25px !important;
}
