
@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* @font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lilgrotesk';
    src: url('./fonts/LilGrotesk-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather';
    src: url('./fonts/Merriweather-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: '11.20';
    src: url('./fonts/11.20___.TTF') format('opentype');
    font-weight: normal;
    font-style: normal;
} */

/*html,*/
/*body {*/
/*    height: 100%;*/
/*    margin: 0;*/
/*    overflow-y: scroll;*/
    /* Font 1: Montserrat */
    /* font-family: 'Montserrat', sans-serif; */

    /* Font 2: Poppins */
/*    font-family: 'Poppins', sans-serif;*/

    /* Font 3: Lilgrotesk */
    /* font-family: 'Lilgrotesk', sans-serif; */

    /* Font 4: Merriweather */
    /* font-family: 'Merriweather', serif; */

    /* Font 5: 11.20 */
    /* font-family: '11.20', sans-serif; */
/*}*/

/*body {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    background-color: #ffffff;*/
/*    color: #000000;*/
/*}*/
html {
    height: 100%;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    color: #000000;
    height: 100%;
    overflow-y: scroll; /* Keep this only on the html element */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
}

.navbar {
    background-color: #ffffff;
}

.nav-link {
    margin-inline: 4vh;
}

.nav-link,
button {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: #000000;

}

.nav-link:active {
    color: #000000;
    font-weight: bold;
}

.active {
    color: #000000 !important;
    font-weight: bold;
}

.navbar-toggler {
    background-color: #ffffff !important; /* White background for the button */
    border-color: rgba(0, 0, 0, 0.1); /* Optional: add a slight border if desired */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* Black color for the icon */
}

.social-icons {
    display: flex;
    align-items: center;
    margin-right: 4vh;
}

.social-icons a {
    margin-inline: 2.5vh;
    font-size: 1.0rem;
    text-decoration: none;
}

/*** Footer ***/
.footer {
    background-color: #BFBFBF;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: center;
    color: #000000;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #000000;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

@media (max-width: 768px) {
    .navbar-toggler {
        background-color: #ffffff !important; /* White background for mobile */
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(128, 128, 128, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        /* Gray color for the icon */
    }
}



