body {
    overflow:hidden;
    min-height: 768px;
    min-width: 1024px;
}

a {color: white; text-decoration: underline; font-style: italic;}
a:link {color: white; text-decoration: underline; font-style: italic;}
a:visited {    color: rgb(220,220,220);}
a:hover {    font-style: normal; color: white;}
a:active {    font-style: normal; color: white;}

.page{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    background-image: url('img/page_bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    z-index:0;
}
.page .bgImg {
    height: 50%;
    position: absolute;
    width: 100%;
    top: 25%;
    z-index: 10;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.page .bCnt {
    height: 100%;
    width: 1024px;
    position: absolute;
    left: 50%;
    margin-left: -512px;
    top: 0px;
    z-index: 5;
}
.page .vBgImg {
    height: 50%;
    width: 1024px;
    position: absolute;
    left: 50%;
    margin-left: -512px;
    top: 25%;
    background: rgba(50,50,50,0.7);;
    z-index: 15;
}
.page .content {
    height: calc(100% - 50px);
    width: 1024px;
    position: absolute;
    left: 50%;
    margin-left: -512px;
    top: 50px;
    z-index: 20;
    overflow-y: auto;
    color: white;
    padding: 5px;
}
.page .title{
    z-index: 25;
    color: white;
    font-size: 30px;
    padding:10px;
}
@media (max-width: 1024px) {
    .content{overflow-x: scroll;}
}
@media (max-height: 768px) {
    .content{overflow-y: scroll;}
}
@keyframes floatingClicked {
    from {transform: rotate(0deg);
          background: #262626;
          box-shadow: 2px 0px 5px grey;}
    to {transform: rotate(45deg);
        background: #4d4d4d;
        box-shadow: 2px 2px 5px grey;}
}
@keyframes floatingReleased {
    from {transform: rotate(45deg);
          background: #4d4d4d;
          box-shadow: 2px 2px 5px grey;}
    to {transform: rotate(0deg);
        background: #262626;
        box-shadow: 2px 0px 5px grey;}
}
.floatingClicked {
    transform: rotate(45deg);
    animation-name: floatingClicked;
    animation-duration: 0.3s;
    background: #4d4d4d;
    box-shadow: 2px 0px 5px grey;
}
.floatingReleased {
    animation-name: floatingReleased;
    animation-duration: 0.3s;
    transform: rotate(0deg);
    background: #262626;
    box-shadow: 2px 2px 5px grey;
}
.floatingBtn{
    font-size: 30px;
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    bottom: 50px;
    right: 50px;
    color: white;
    padding: 8px 10px;
    cursor: pointer;
    z-index: 55;
}
.floatingBtn:hover {
    width: 60px;
    height: 60px;
    padding: 13px 15px;
    bottom: 45px;
    right: 45px;
}
.menuItem{
    position: fixed;
    font-size: 20px !important; 
    font-weight: normal !important;
    font-family: Consolas;
    cursor: pointer;
    z-index: 50;
}
#topPage{
    top: 0px;
}
#information {
    top: 100%;
}
#devs {
    top: 200%;
}
#services {
    top: 300%;
}
#form {
    top: 400%;
}
#impress {
    top: 500%;
}
#information .bgImg {
    background-image: url('img/bgImgNo1.png');
}
#devs .bgImg {
    background-image: url('img/bgImgNo2.png');
}
#services .bgImg {
    background-image: url('img/bgImgNo3.png');
}
#form .bgImg {
    background-image: url('img/bgImgNo4.png');
}
#impress .bgImg {
    background-image: url('img/bgImgNo5.png');
}