
body
{
    background-size: 300px 300px;
    background-color: black;
    image-rendering: pixelated;
    position: fixed;
    margin-top: 15vh;
    overflow: hidden;
}

body.picture
{
    background-position: center center;
    background-size: cover;
    image-rendering: smooth;
}

#wallpaper, #mask
{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

#mask
{
    opacity: 0;
    background-color: black;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

#logo
{
    z-index: 9999;
    position: relative;
}

#mask p
{
    width: 100%;
    font-size: 5vh;
    text-align: center;
    color: red;
    font-weight: bold;
}

#mask.hidden
{
    opacity: 1;
}

#wallpaper
{
    background-image: url("res/hbsback.png");
    background-size: 100% 100%;
    z-index: 2;
    transform: scale(1);
    transition: transform 0.8s linear, transform 0.2s ease-out;
}

#wallpaper.hidden
{
    transform: scale(1.5);
}

h1
{
    font-size: 5vh;
}

h2
{
    font-size: 4vh;
}

h3
{
    font-size: 3vh;
}

h4
{
    font-size: 2vh;
}

header
{
    position: fixed;
    width: 100%;
    height: 15vh;
    top: 0px;
    left: 0px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 100;
    /*
    box-shadow:
	      0px 0px 20px black,
	inset 0px 0px 20px black
    ;*/
}

header > img
{
    height: 15vh;
    transition: all 0.5s ease-in-out;
}

header.display
{
    height: 100%;
}

header.display > img
{
    height: 20vh;
}

nav
{
    position: fixed;
    top: 0vh;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
}

nav ul
{
    width: 100%;
    margin-top: 20vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

nav li.single, nav li.title
{
    width: 100vw;
}

nav li.title
{
    font-size: 3.5vh;
    font-weight: bold;
    text-decoration: underline;
}

.menu_title
{
    max-height: 5vh;
}

nav li.single
{
    font-size: 3vh;
}

nav li
{
    width: 48vw;
    font-size: 2vh;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

nav li.entry:hover, nav li.single:hover
{
    transform: scale(1.5);
}

.link
{
    cursor: link;
}

.nolink
{
    cursor: normal;
}

.dual
{
    width: 100%;
}

.dual article
{
    box-sizing: border-box;
    margin: 20px;
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 20px;
}

.dual article div
{
    scrollbar-color: white black;
    scrollbar-width: thin;
}

.dual article:first-of-type
{
    /*
    background: linear-gradient(-90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
   */
}

.dual article:last-of-type
{
    /*
    background: linear-gradient(+90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
*/
}

.news p
{
    text-indent: 3em;
}

.news h1, .news h2, .news h3, .news h4, .news h5, .news p
{
    text-shadow:
	0px 0px 5px black,
	0px 0px 5px black,
	0px 0px 5px black,
	0px 0px 5px black,
	0px 0px 5px black
    ;
}

.news li, form
{
    padding: 20px;
    margin: 20px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    border-radius: 20px;
}

input, label
{
    width: 45%;
    height: 3vh;
    font-size: 2vh;
}

input
{
    margin: 2px;
    border: 2px solid white;
    background-color: black;
    color: white;
}

input[type="text"], input[type="password"]
{
    transition: all 0.2s ease-in-out;
}

input[type="text"]:focus, input[type="password"]:focus
{
    box-shadow:
	inset 0px 0px 10px white
    ;
    transition: all 0.2s ease-in-out;
}

input[type="button"]
{
    background: linear-gradient(90deg, gray, black);
    transition: all 0.2s ease-in-out;
}

input[type="button"]:hover
{
    box-shadow:
	inset 0px 0px 10px black,
	inset 0px 0px 10px black,
	inset 0px 0px 10px black
    ;
}

input[type="button"]:active
{
    box-shadow:
	inset 0px 0px 20px black,
	inset 0px 0px 20px black,
	inset 0px 0px 20px black
    ;
}

footer
{
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 10;
    with: 100vw;
    height: 15vh;
    backdrop-filter: blur(5px);
    box-shadow:
              0px 0px 20px black,
	inset 0px 0px 20px black
    ;
}

#networks
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 10vh;
    flex-wrap: wrap;
}

#networks a, #networks img
{
    display: block;
    height: 7vh;
}

#networks img
{
    margin: 10px;
}

#credits
{
    font-size: small;
    color: gray;
    text-align: center;
    height: 50px;
}

article > div ul li
{
    width: 98%;
}

a
{
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
}

.back_button a
{

}

.classification
{
    transform: skew(+5deg) !important;
    position: absolute;
    top: 0px;
    right: 20px;
    text-align: right;
}

.avatar
{
    float: left;
    height: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.reviews li
{
    min-height: 60px;
}

.link
{
    text-decoration: none !important;
}	

.link img
{
    transform: skew(0deg);
    width: 100px;
    height: 100px;
}
