
:root {
  --width: 575px;
}


/* latin */
@font-face {
  font-family: 'Tangerine';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/Tangerine-Regular.ttf');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Tangerine';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/Tangerine-Bold.ttf');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

  
body {
	background: #690101;
	/*
	background-image:url('images/background.jpg');
	background-position:center;
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-size:cover;
	*/
	overflow-y: scroll; /* Show vertical scrollbar */
	cursor: url("https://dnd.cyberian-networks.de/images/cursors/cursor.png"), default;
}

a {
	cursor: url("https://dnd.cyberian-networks.de/images/cursors/pointer.png"), pointer;
}

.page {
  position: relative;
  z-index: 0;
  box-sizing: border-box;
  width: var(--width);
  margin: 30px auto;
  
  font-family: 'Tangerine', cursive;
  font-size: 26px;
  
  border: 0px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  /* Background lines */
  background-image: linear-gradient(#f5f5f0 1.3rem, #ccc 1.4rem);
  background-size: 100% 1.4rem;
  box-shadow: 2px 3px 20px black, 0 0 60px #8a4d0f inset;
  line-height: 1.4rem;
  padding: 1.4rem 0.5rem 0.3rem 0.5rem;
}

#loginbox{
	font-family: 'Tangerine', cursive;
	font-size: 36px;
    position:absolute;
    width:300px;
    z-index:15;
    top:200px;
    left:50%;
	text-align:center;
    margin:-100px 0 0 -150px;
    background:#9c9292;
	border-radius: 15px;
	box-shadow: -3px 5px 5px #690101;
	border-width:1px;
	
	background-color: #f5f5f0;
	background-size: 100% 1.2rem;
	box-shadow: 2px 3px 20px black, 0 0 60px #8a4d0f inset;
}

.infotext {
	position: relative;
    bottom: 0;
	font-size: 0.2em;
	font-family: Verdana, Geneva, sans-serif;
}

select,option,checkbox,input[type=checkbox],input[type=submit],button,input[type=date],input[type=time],input[type=number],input[type=password],input[type=text],input[type=email],label, input[type=datetime-local] {
	cursor: url("https://dnd.cyberian-networks.de/images/cursors/cursor.png"), default;
}

.cursorCursor {
	cursor: url("https://dnd.cyberian-networks.de/images/cursors/cursor.png"), default;
}
.pointerCursor {
	cursor: url("https://dnd.cyberian-networks.de/images/cursors/pointer.png"), pointer;
}
.cursorHelpCursor {
	cursor: url("https://dnd.cyberian-networks.de/images/cursors/cursor_help.png"), help;
}


a {
	color: #690101;
}
a:hover  {
	color: #000000;
	text-decoration: underline dotted #690101;
	text-decoration-thickness: 1px;
}
a:visited {
	color: #690101;
}

a.nodecoration {
	text-decoration: none;
}
a.nodecoration:hover {
	color: #000000;
	text-decoration: underline dotted #690101;
	text-decoration-thickness: 1px;
}


.titre {
  color: #000;
  display: block;
  font-weight: bold;
  text-decoration: underline;
  padding-bottom: 1.2rem;
  font-size: 1.5em;
}


.nohighlighting {
	color: #f2f2f2;
	text-decoration: none;
}

.nohighlighting:hover  {
	color: #000000;
	text-decoration: none;
}

.nohighlighting:visited {
	color: #f2f2f2;
}

.playitem {
  position: relative;
  border-radius: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.imgOverlay {
  position: absolute;
  bottom: 26;
  right: 26;
}

.imgButton {
	border-radius: 25px;
}

table {
	
	margin: 0 auto;
	border-spacing: 0px;
}

#loadingdiv {
	width: 100%;
	height: 100%;
	z-index: 99;
	position: fixed;
	left: 0px;
	top: 0px;
	background: rgba(1, 1, 1, .9);
	font-family: 'Tangerine', cursive;
	font-size: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
}


@keyframes flash {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.flashing {
	animation: flash 0.5s;
    animation-iteration-count: infinite;
}

select {
	border: 1px solid #f2f2f2;
	color: #f2f2f2;
	background-color: #690101;
	border-radius: 10px; 
	cursor: url("https://dnd.cyberian-networks.de/images/cursors/pointer.png"), pointer;
}
select:hover {
	border: 1px solid #f2f2f2;
	background-color: rgb(0 0 0 / 50%);
	color: #f2f2f2;
}
