main{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    /* position: relative; */
    overflow: hidden;
}
#backgroundCarousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Send the slideshow behind other content */
    overflow: hidden;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100vh; 
}


.leftmost img{
    max-width: 40%;
    margin-top: 1.75em;
}

.landing-half{
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 3em;
}

/* .leftmost{
    flex: 4;
} */

.rightmost {
    display: flex;
    margin-top: 5em;
    justify-content: center;
    align-items: center;
    justify-self: center;

    
}
.rightmost .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25em 3.125em;
    background-color: rgba(100, 100, 100, 0.95);
    border: 1px solid rgb(0, 0, 0); /* Light border to define the box */
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 70%;

    /* background: transparent; */
    
}

.rightmost a {
    display: block;
    width: 100%; /* Full width for buttons */
    padding: 10px 5px; /* Padding for button-like appearance */
    margin: 10px 0; /* Space between buttons */
    text-align: center; /* Center text inside the buttons */
    color: #fff; /* White text color */
    background-color: #007bff; /* Bootstrap primary button color */
    border: none; /* Remove border */
    border-radius: 40px; /* Rounded corners for buttons */
    text-decoration: none; /* Remove underline from links */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.rightmost a:hover {
    background-color: #0056b3; /* Darker blue on hover */
}


h2{
    font-size: 2.6em;
    color: #2f64f2;

}
h3{
    font-size: 2em;
    color: #d98f02;
}
h4{
    font-size: 1.6em;
    padding: 10px 0;
    color: #d98f02;
}

p{
    color: #d98f02;
}

a{
    display: block;
}

footer{
    display: none;
}



/* header{
    visibility: hidden;
} */


@media (max-width: 768px) { /* Adjust the breakpoint as needed */


    header img{
        display: none;
    }
}
