:root{
    --wp-bg:grey;
}

*{
    box-sizing: border-box;
    
    
}

body{
    
    background-image: url("/media/wilgus-gnutiling-embossed.png");
    
}

/*Fonts*/

@font-face {
    font-family: 'Liberation Sans' ;
    src: url('https://test.juangames.com/media/fonts/LiberationSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Liberation Sans Bold';
    src: url('https://test.juangames.com/media/fonts/LiberationSans-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Liberation Serif';
    src: url('https://test.juangames.com/media/fonts/LiberationSerif-Regular.ttf') format('truetype');

}
@font-face {
    font-family: 'Liberation Serif Bold';
    src: url('https://test.juangames.com/media/fonts/LiberationSerif-Bold.ttf') format('truetype');

}

@font-face {
    font-family: 'LiberationMono';
    src: url('https://test.juangames.com/media/fonts/LiberationMono.ttf') format('truetype');
}

@font-face {
    font-family: 'Liberation Mono Italic';
    src: url('https://www.juangames.com/media/fonts/LiberationMono-Italic.ttf') format('truetype');
}
@font-face {
    font-family: 'Liberation Mono Bold';
    src: url('https://www.juangames.com/media/fonts/LiberationMono-Bold.ttf') format('truetype');
}

.wrapper{
    background-color: white;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}
/*Desktop menu*/
@media only screen and (min-width:679px){
    
    .main{
        border-right: double;
    }

    .mobilemenu{
        display: none !important;}
        

}
/*Mobile menu*/
@media only screen and (max-width:680px) {
    .main{
        width:100% !important;
        border-right: none !important;
    }
    .sidebar{
        display: none !important;
    }

    .deskmenwrap{
        display: none !important;
    }
    
    .mbmenuitem{
        background-color: #cfcfcf;
    border-left: solid 4px #adadad;
    border-top: solid 4px #adadad;
    border-right: solid 4px #6e6e6e;
    border-bottom: solid 4px #6e6e6e;
    font-size: 17pt;
    font-family: 'Liberation Serif Bold';
    font-weight: bolder;
    width: 100%;
    }

    .mbdropbtn:hover:after .mbmenuitem{
        display: block !important;
    }

    .mbdropbtn{
        background-color: #cfcfcf;
        border-left: solid 4px #adadad;
        border-top: solid 4px #adadad;
        border-right: solid 4px #6e6e6e;
        border-bottom: solid 4px #6e6e6e;
        font-size: 17pt;
        font-family: 'Liberation Serif Bold';
        font-weight: bolder;
        float: right;
    }
    
    
}
/*Menu buttons*/
.deskmenwrap{
    background-color: #cfcfcf;
    border-right: solid 4px #6e6e6e;
    border-bottom: solid 4px #6e6e6e;
    width:97%;
    height:37,5px;
    margin-right: auto;
    margin-left:auto;
}
.dropdown{
    display:inline-block;
    position: relative;
}
.menuitem, .dropbtn{
    background-color: #cfcfcf;
    border-left: solid 4px #adadad;
    border-top: solid 4px #adadad;
    border-right: solid 4px #6e6e6e;
    border-bottom: solid 4px #6e6e6e;
    font-size: 18pt;
    font-family: 'Liberation Serif Bold';
    font-weight: bolder;
    width: 110px;
    
    
}
#go{
    background-color: #cfcfcf;
    border-left: solid 4px #adadad;
    border-top: solid 4px #adadad;
    border-right: solid 4px #6e6e6e;
    border-bottom: solid 4px #6e6e6e;
    font-family: 'Liberation Serif Bold'
}
#about:before{
    content: 'About ↓'; 
}

#about:after{
    content: 'About ↑';
    display: none;
}

#about:hover:before{
    display:none;
}

#about:hover:after{
    display:block
}
.dropbtn{
    width:140px !important;
}
.dropbtn:hover{
    border-bottom: none;
}
.dropitm{
    font-family: 'Liberation Serif Bold';
    text-align: center;
    background-color: #cfcfcf;
    border-left: solid 4px #adadad;
    border-top: solid 4px #adadad;
    border-right: solid 4px #6e6e6e;
    border-bottom: solid 4px #6e6e6e;
    font-size: 16pt;
    width: 140px;
    
}

#comm{
    font-size: 12pt;
}

.menuitem:hover, .mbmenuitem:hover, .dropbtn:hover, .dropitm:hover, #go:hover{
    filter:brightness(90%) !important;
    transition: .15s ease-in-out;
    cursor: pointer;
}
.menuitem:active, .mbmenuitem:active, .dropbtn:active, .dropitm:active, #go:active{
    filter: brightness(80%) !important;   
    transform: translate(1px); 
    
}

#go:after{
    cursor: wait;
}
.dropbtn:active{
   
    border-right: solid 2px #6e6e6e;
}
.dropdown {
    position: relative;
    display: inline-block;
  }
  
.dropdown-content {
    font-weight: bolder;
    
    display: none;
    position: absolute;
    width:138%;
    float: left;
    
  }
  
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.dropdown:hover .dropdown-content {display: block;}


/*Typography*/
p, li{
 font-family: 'Liberation Serif';
 font-size: 14pt;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Liberation Serif';
}

h1{
    font-size: 26pt;
}

/*Main stuff*/
.main{
        display: block;
        float: left;
        width:70%;
        overflow: hidden;
        padding: 0px 20px 0px 20px;
        word-wrap: break-word;
        border-right: double;
        margin-bottom: 20px;

    }
.rmain{
    display: block;
    padding: 0px 20px 0px 20px;
    float: right;
    width:75%;
    overflow: hidden;
    word-wrap: break-word;
    border-left: double;
}

.lsidebar{
    display: block;
        float: left;
        width:25%;
        padding-left: 10px;
        height: 100%;
        overflow: hidden;
}

.sidebar{
        display: block;
        float: right;
        width:30%;
        padding-left: 10px;
        height: 100%;
        overflow: hidden;
    }
.sidebar input[type=text]{
    font-size: 10pt;
    font-family: 'Liberation Serif';
    width: 140px;
}

.footerwrapper{
    border-top: dotted;
    display: block;
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.footer{
    margin-top: 10px;
}

.main img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    
}

.main img:hover{
    transform:scale(130%)
}