@charset "utf-8";

body {
    margin: 0;
    padding: 0;
    height: auto;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}

a, a:hover, a:active, a:visited {
    color: #000;
    text-decoration: none;
}

#background {
    /*position: fixed;*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
  height: 1300px;
}

#backgroundNoise {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*�@background-image: url('../images/bg_noise.png');
    background-repeat: repeat;�@*/
    background-size: 200px 200px;
    opacity: 0.05;
    z-index: 0;
}

#backgroundCanvas {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

#backgroundBlur {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
}

.header {
    position:fixed;
    top:0;
    right:0;
    left: 0;
    height: 2rem;
    line-height: 2rem;
    z-index: 1;
}

.main {
    min-height: calc(100vh - 2rem);
    margin-top: 2rem;
    overflow-y: auto;
}

#focusFrame {
    position: absolute;
    z-index: 2;
    background-blend-mode: color-burn;
    background-color: #eee;
    mix-blend-mode: color-burn;
    height: 100px;
    width: 100px;
}
#focusCopy {
    display: none;
}
#focusText {
    display: none;
}

.header ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: space-between;
}

.header ul li {
    padding: 0 10px;
}

.header .menu ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: flex-end;
}

.header .menu ul li a:hover {
    text-decoration: underline;
}
.header .menu ul li.active a {
    text-decoration: underline;
    pointer-events: none;
}
@media screen and (max-width: 767px){
  #background {
    /*position: fixed;*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 900px;
  }
}