/*@import url('https://fonts.googleapis.com/css?family=Nunito:300,400,700,800');*/

@font-face {
    font-family: 'impact_LT';
    src: url('/fonts/impact_lt.eot'),
         url('/fonts/impact-lt.woff') format('woff'),
         url('/fonts/impact-lt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    /*position: absolute;*/
    position: fixed;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: #EFEFEF;
    background-color: #48708d;
    font-family:'Nunito',cursive;
    left: 0;
    
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body {
}

.startScreenbox {
    width: 256px;
    height: 256px;
    background-image: url("/elements/logo01_256px.png");
    background-repeat: no-repeat;
    /*background-attachment:fixed;*/
    background-position: 50% 50%;
    background-size: cover;
    /*bottom: 0px;*/
    /*position: absolute;*/
    /*margin-bottom: 0px;*/
    /*border: 1px #000000 solid;*/
}

div.table {
    display: table;
    border-collapse:collapse;
}
div.tr {
    display:table-row;
}
div.td {
    display:table-cell;
    border:thin solid red;
    padding:5px;
}

.starbox {
    position: absolute;
    height: 50px;
    width: 50px;
    margin: 0px auto;
    color: #000000;
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    font-weight: 300;
}

@keyframes blinker {
    50% { opacity: 0.0; }
    /*
    from {color: red;}
    to {color: yellow;}
    0%   {color: red;}
    25%  {color: yellow;}
    50%  {color: blue;}
    100% {color: green;}
    */
}

.menuebox {
    position: absolute;
    width: 610px;
    /*height: 540px;*/
    min-height: 540px;
    height: auto;
    top: calc(50% - 300px);
    left: calc(50% - 305px);
    z-index: 998;
    margin: 0px auto;
}

.menueelements {
    position: relative;
    width: 393px;
    height: 88px;
    -webkit-transform: skew(21deg);
	   -moz-transform: skew(21deg);
       -o-transform: skew(21deg);
    background: #FFFFFF;
    margin-top: 2px;
}
.menueelementsBorderTop {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.menueelementsBorderBottom {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.menueelementsContent {
    position: relative;
    color: #000000;
    width: 100%;
    height: 100%;
    text-align: center;
    top: calc(50% - 15px);
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    /*font-family: 'impact_LT', normal;*/
    font-size: 30px;
    -webkit-transform: skew(-21deg);
	   -moz-transform: skew(-21deg);
       -o-transform: skew(-21deg);
}
.menueelements.border_white {
    border-color: #EFEFEF;
}

.menueelements.border_black {
    border-color: #000000;
}

.steplink {
    cursor:pointer !important;
}
.steplink:hover {
    color: #AFAFAF !important;
}

.sitename {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 10px;
}

/* ::::: responsive media stuff :::::::: */

/*html, body {
    position: absolute;
}
*/

@media only screen and (max-width: 792px) {
    
    html, body {
        position: absolute;
    }
    
   


}

