body {
    min-height: 75rem;
    padding-top: 4.5rem;
    background-image: url("/img/vintage-paper.jpg");
    background-size: cover;
}
.navbar {
    height: 4.5rem;
}

.main-bg {
    position: relative;
    overflow: hidden;

    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-size: cover;
    filter: brightness(0.5); /* Optional: darkens the video for better text visibility */
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
}
.navbar-dark {
    background-color: #0b1627 !important;
}

a {
    color: #000;
}