@font-face{
    font-family: myFont;
    src: url(/Images/brand.ttf);
}

body{
    background: linear-gradient(-45deg, #081C15, #FF900B, #FFE3CA);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    font-family: myFont;

}
    
@keyframes gradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
}

#nav-buttons{
    gap: 1em;
}

#btn-brand{
    background-color: #FF900B;
    border:0.1em solid #e44a01 ;
    color: #FFE3CA ;
    z-index: 100;
    text-decoration: none;
    position: relative;
    pointer-events: auto;
}

#btn-brand:hover{
    background-color: #e44a01 ;
    border: 0.1em solid #FF900B;
    z-index: 3;
}

#btn-brand-primary{
    background-color: #e44a01 ;
    border: 0.1em solid #FF900B;
    z-index: 3;
}

.btn-register{
    background-color: #FFE3CA !important;
    color: #FF900B !important;
    z-index: 2;
}

.btn-register:hover{
    font-weight: bolder !important;
    border: 0.1em solid #FF900B;
    z-index: 2;
}

.btn-custom {
    height: 6rem;
}

#extra {
    background-color: #081C15;
    border:0.1em solid #e44a01;
    color: #FFE3CA;
    z-index: 2;
}

#title {
    color: #FFE3CA !important;
    
}

.nav-bar {
    background-color: rgb(240, 205, 141); 
    position: relative;
    isolation: isolate;  /*creates stacking context*/ 
    opacity: 1; 

    /* background: linear-gradient(-45deg, #0C489C, #4766B7, #6477C3, #8491CE);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite; */
    /* height: 100vh; */
}

.nav-bar::after{
    content: " ";
    position: absolute;
    background-image: url("https://images.unsplash.com/photo-1507629221898-576a56b530bb?q=80&w=3670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center 60%;
    background-color: white;
    z-index: -1;
    inset: 0;  /*shorthand for Top, Bottom, Right, Left */
    opacity: 0.4;
    color: #FFE3CA;
}

.limitedSpace-note{
    font-size: 0.85rem;
}

.nav-span-d{
    display: none;
}
.sectionOne-M{
    display: none;
}
.sectionOne-D{
    display: block;
}

#extraText {

    font-size: 1rem;
}

#submit-btn {
    background-color: #e44a01;
    border: #081C15;
}


@media (max-width: 1366px) {

    /* TOP PAGE */
    #brand-logo{
        height: 50%;
        width: 50%;
    }

    .featurette-img{
        width: 100%; 
    }

    #detailsHeader{
        color: #192857;
    }

    .btn-group-lg>.btn, .btn-lg {
        --bs-btn-font-size: 1rem !important;
    }

    /* NAV BAR */
    .nav-span-d{
        display: block;
    }
    .nav-span-m{
        display: none;
    }
    .sectionOne-D{
        display: none;
    }
    .sectionOne-M{
        display: block;
    }

}