* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: "Helvetica", sans-serif;
    background-image: url(background-image.svg);
    background-size: auto;
    background-repeat: no-repeat;
    padding-top: 56px;
}

/* make sure the page is full-height so our overlay covers it */
html, body {
    height: 100%;
    margin: 0;
    position: relative;
}

.content {
    padding: 11px;
}

/*ensure navbar floats above the overlay */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-light {
    background-color: #e2e2e2 !important;
}

.navbar-nav .nav-link {
    color: #09499c !important;
    font-weight: 500 !important;
    float: right;
    padding: 5px 8px !important; 
}

.navbar-nav .nav-link:hover {
    color: black !important;
    font-weight: 700 !important;
}

.bg-container {
    position: fixed;      /* stays put even if you scroll */
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url(blurred_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;   /* optional: centers the image */
    background-size: cover;
    background-color: rgba(255,255,255,0.7);  /* white at 70% opacity */
    z-index: 1;
}
  
  /*wrapper that fills the viewport and uses flex to center */
.text-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    /* subtract nav height if you want it not covered—e.g. nav ≈56px tall */
    height: calc(100vh - 56px);
    margin-top: 35px;
    font-weight: bold;
}
  
  /*style for the actual text box */
.text-container {
    padding: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.352);  /* slightly more opaque */
}

.display-4 {
    font-weight: bolder;
    font-size: 55px;
}

.lead {
    font-weight: bold;
    font-size: 24px;
}

.btn {
    padding: 15px;
    display: block;
    border: 0;
    border-radius: 10px;
    width: 180px;
    background-color: #d9edf5;
    color: black;
    font-weight: bold;
}

.btn-group > .btn {
    margin-right: 0;
}

