@charset "UTF-8";
/* CSS Document */
* {box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; }
body {font-family:"Comic Sans MS"; background-color:#D5D5D5; margin:0px; }
body {font-size:0.625em; -webkit-text-size-adjust:0.625em; -ms-text-size-adjust:0.625em; }
#content {font-size:1.5em; font-family:inherit; }

#content {position:relative; margin:30px auto 0 auto; max-width:90%; height:auto; }
iframe {position:relative; display:block; width:100%; height:90vh;} /* vw und vh vwidth vheight ähneln den Prozentangaben, aber sie beziehen sich auf den Viewport */

/* RESPONSIVE */
@media screen and (max-width: 399px) {
	#content {max-width:94%; width:100%; height:auto; }
}

@media screen and (min-width: 400px) {
}

@media screen and (min-width: 500px) {
}

