html {
	font-size: 14pt;
	background: #283583;
	color: #000;
	font-family: 'Helvetica', 'Arial', sans-serif;
	}
body {
	margin: 0;
	position: relative;
	overflow-x: hidden;
	}

a:link, a:visited {
	text-decoration: underline;
	color: inherit;
	text-decoration-thickness: 0.1em;
	text-underline-offset: 0.2em;
	text-decoration-style: dotted;
	}
a:hover {
	text-decoration: underline;
	color: inherit;
	text-decoration-style: wavy;
	}

main.page {
	position: relative;
	z-index: 1000;
	color: #fff
	text-align: center;
	min-height: 100%;
	background: #bea4ce;
	height: 100vh;
	}
.left-top, .right-bottom {
	position: absolute;
	font-weight: bold;
	font-size: 7vw;
	line-height: 0.9em;
	}

.left-top {
	top: 1rem;
	left: 1rem;
	}
.right-bottom {
	bottom: 1rem;
	right: 1rem;
	}


*, html {
  cursor: none;
}

#big-cursor {
  position: fixed;
  pointer-events: none;   /* verhindert, dass das Bild Klicks blockiert */
  min-width: 400px;
  max-width: 70vw;           /* beliebige Größe */
  height: auto;
  transform: translate(-50%, -50%); /* Hotspot in der Mitte */
  z-index: 209;
	}




@media only screen and (max-width: 1000px) {

	*, html {
	  cursor: default;
	}
	main.page {
		overflow: hidden;
	}
	#big-cursor {
	  position: absolute;
	  top: 15%;
	  left: -20%;
	  width: 70vw;           /* beliebige Größe */
	  z-index: 9999;
  	transform: translate(0%, 0%) rotate(40deg); /* Hotspot in der Mitte */
	}
	.desktop-link {
		pointer-events: none;
  	cursor: default;
	}
	.left-top, .right-bottom {
		font-size: 11vw;
		}

	.right-bottom {
		bottom: 9rem;
		right: 1rem;
		}

	
}