
@font-face {
    font-family: myFont;
    src: url(/csssheets/fonts/RobotoSlab-Medium.ttf);
}

txt {
    font-family: myFont;
    font-size:15px;
}

.body {
background-image: url(/img/background2.jpg);
}

/*#region NAV*/
.defaultnav{
    position: fixed;
    width:200px;
    height: 20px;
    background-color: rgba(110, 111, 197, 0);
    top:10px;
    z-index: 999;
}

.NAVhomebutton {
    position: fixed;
    background:url("/img/Home_btn.png") center top no-repeat;
    background-size: 90%;
    top:11px;
    width: 45px;
    height: 45px;
    z-index: 999;
    left:13px;
}

.NAVhomebutton:hover{
  filter: brightness(70%);
}

.NAVSiteMapButton {
    position: absolute;
    background:url("/img/frame_0_delay-0.25s.gif") center top no-repeat;
    background-size: cover;
    width: 45px;
    height: 45px;
    z-index: 999;
    left: 55px;
}

.NAVSiteMapButton:hover{
    background:url("/img/grglobe.gif") center top no-repeat;
    background-size: cover;
    filter: brightness(80%);
}


/*#endregion*/


/*#region scrolls*/

/* Hide scrollbar for Chrome, Safari and Opera */
.InvisibleScroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.InvisibleScroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Main Scroll Bar*/

/* width */
::-webkit-scrollbar {
  width: 4px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #154079; 
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #6889a8; 
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #635588; 
}

/*#endregion*/