@font-face {
  font-family: Montserrat;
  font-weight: 400;
  src: url(fonts/Montserrat-Regular.woff);
}


@font-face {
  font-family: Josefine;
  font-weight: 400;
  src: url(fonts/JosefinSans-Regular.woff);
}

@font-face {
  font-family: myFont;
  src: url(fonts/alexScript.woff);
}

html {
    height: 110%;
}

body {
    background: url(img/bodyBG.jpg) center center no-repeat fixed;
    background-size: cover;

}

body, header {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 16pt;
}

a, a:visited {
    color: #000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

header {
    width: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
     background-image: 
    linear-gradient(to right, rgba(187, 187, 255, 1), rgba(187, 187, 255, 0)), url(img/banner_BG.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 20;
}

img#logo {
    max-width: 350px;
    width: 100%;
    margin: 5px;
    transition: all .3s;
}

nav {
    width: 300px;
    overflow: scroll;
    position: fixed;
    top: 10px;
    right: 10px;
    background: #555;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    transition: all .3s;
    z-index: 60;
}

.menuLink, .menuLink:visited {
    font-weight: bold;
    color: #FFF;
    display: block;
    font-family: myFont;
    font-size: 20pt;
    margin-bottom: 8pt;
}

nav.nav {
    right: -310px;
}

button#navTrigger {
    position: fixed;
    top: 10px;
    right: 350px;
    font-weight: bolder;
    font-size: 30pt;
    transform: rotate(90deg);
    background: #FFF;
    transition: all .5s;
    z-index: 60;
}

button#navTrigger.navTrigger {
    right: 10px;
}

#dateDiv {
    /* width: 300px; */
    font-size: 10pt;
    position: fixed;
    top: 10px;
    right: 0;
    text-align: right;
    margin-right: 10px;
    background: rgba(254, 226, 214, .5);
    border-radius: 10px;
    padding: 10px;
}

article {
    /* background: rgba(254, 226, 214, .8); */
    border-radius: 20px;
    margin: 140px 15px 0 15px;
}

h1 {
    background: rgb(187, 187, 255);
    position: sticky;
    top: 60px;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#frameLeft {
    background: linear-gradient(to right, rgba(187, 187, 255, .8), rgba(187, 187, 255, 0));
}

#frameRight {
    background: linear-gradient(to right, rgba(187, 187, 255, 0), rgba(187, 187, 255, .8));
}

footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 10px;
    font-size: 10pt;
    background: rgb(187, 187, 255);
    z-index: 20;
}

div#cv {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    display: block;
    cursor: crosshair;
    z-index: 50;
}

div#cv.cv {
    display: none;
}

.sideShowLeft {
    transform: rotate(-2deg);
    border-radius: 10px;
    border: 1px solid #000;
    box-shadow: 2px 2px 2px #555;
    margin-bottom: 15px;
}

.sideShowRight {
    transform: rotate(2deg);
    border-radius: 10px;
    border: 1px solid #000;
    box-shadow: -2px 2px 2px #555;
    margin-bottom: 15px;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(img/loading.gif) center center no-repeat rgba(0, 8, 0, .5);
    z-index: 100;
    display: none;
}

#sessView {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    z-index: 100;
}

img.rot {
    transition: all .3s;
}