* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

html, body {
    font-family: 'garamond', Arial, "sans serif";
    font-weight:100;
}

p {
    margin: 0px;
    padding: 0px;
}

:root {
    --Hilight-color: #C9AB81;
    --Font1: "garamond";
    --Font2: "Roobert";
    --Font3: "Roboto";
    --Font4: "Arial";
    --Color-1: #2e5747;
    --Color-Orange: #c15120;
    --Color-Grey: #9caaab;
    --DropDownColor: #2e5747;
}


    .navbar-brand {
        font-family: var(--Font1);
        font-size: 22px;
        font-style: italic;
        font-weight: 100;
    }

    .nav-link {
        font-family: var(--Font4);
        font-size: 0.9rem;
        font-weight: 100;
        letter-spacing: 0.1rem;
        color: white;
    }
    
        .nav-link:hover {
            color: var(--Hilight-color) !important;
        }

        .nav-link.active {
            color: var(--Hilight-color) !important;
        }

    

    .dropdown-item {
        color: white !important;
        font-family: var(--Font4) !important;
        font-size: 0.9rem !important;
        font-weight: 100 !important;
        letter-spacing: 0.1rem !important;
    }

    .dropdown-menu {
        color: white;
        font-family: var(--Font3);
        font-size: 1rem;
        font-weight: 100;
        letter-spacing: 0.1rem;
    }

        .dropdown-menu a:hover {
            background-color: black;
            color: var(--Hilight-color) !important;
        }

        .dropdown-menu a:focus {
            background-color: black;
            color: var(--Hilight-color) !important;
        }


.nav-link-Hilight {
    color: var(--Hilight-color) !important;
    font-weight: bold !important;
}

    .galeriez-title {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2.2rem;
        font-family: var(--Font1);
        font-style: italic;
        color: var(--Hilight-color);
        margin:0px;
        line-height:35px;
    }

.galeriez-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-family: var(--Font1);
    font-style: italic;
    color: var(--Hilight-color);
    margin: 0px;
    margin-top:15px;
    margin-bottom:15px;
    line-height:15px;
}

.OkButton {
    padding: 12px;
    background-color: var(--Color-1);
    color: white;
    border-radius: 4px;
    border:none;
    font-family: var(--Font3);
    line-height: 15px;
    transition-duration: 0.4s;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.6);
}

        .OkButton:hover {
            background-color: white;
            color: var(--Color-1);
            border-radius: 4px;
            border-style: solid;
            border-width: 1px;
            border-color: var(--Color-1);
            border-width: 1px;
        }


.CancelButton {
    padding: 12px;
    background-color: white;
    color: var(--Color-1);
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--Color-1);
    border-width: 1px;
    font-family: var(--Font3);
    line-height: 15px;
    transition-duration: 0.4s;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.6);
}

        .CancelButton:hover {
            border-width: 2px;
        }



    select {
        background-color: black;
        color: white;
        font-family: var(--Font1);
        font-size: 1.1rem;
    }

    option:hover {
        background-color: red;
    }

.Waiting-Text {
    font-family:var(--Font4) !important;
    font-size:1rem;
    font-weight:100;
    font-style:italic;
    color:orange;
}