@font-face {
    font-family: MinSans;
    src: url(./font/MinSans-Regular.ttf) format('truetype');
    font-style: normal;
    font-weight: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: 'MinSans';
/*    text-shadow: .5px .5px .5px rgba(0,0,0,.1);*/
}
#nav, #dropdownmenu{
    position: fixed;
    z-index: 15;
}
#nav .selected{
    background-color: var(--bs-primary);
    color: white;
    font-weight: bold;
}
#dropdownmenu {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 15;
    top: 40px;
}
#dropdownmenu .backgroundclickobj{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
}
#dropdownmenu .menubtn.selected{
    background-color: var(--bs-primary);
    color: white;
    font-weight: bold;
}
#fixedheader, #fixedfooter{
    z-index: 2;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
#fixedheader{
    position: fixed;
    width: 100%;
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    padding: 1rem !important;
    top: 40px;
    left: 0;
}
#fixedfooter{
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    padding: 1rem !important;
}

.topfixed td{
    background-color: var(--bs-secondary-bg);
}