@media only screen and (min-width: 900px) {
:root {
    --bg: #000;
    --link:#D655B8;;
    --accent:#0896E8;
    --font:#F0E7EF;
    --special:#F2BD10;
}


@font-face { 
    font-family: 'Comic Sans MS';
    src: url('/fonts/Comic Sans MS.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} 
body, html {
	padding: 0;
	margin: 0;
	height: 100%;
	background: var(--bg);
	color: var(--font);
	font-family: 'Comic Sans MS';
	box-sizing: border-box;
}

.page h1:first-child {
	margin-top: 0;
}
b, i, u {color:var(--special)}

iframe {
	border: none;
	height: 100%;
	width: 100%;
	overflow-y:scroll;
	overflow-x:hidden;
}

.page {
	padding: 24px;
	overflow-y:scroll;
	overflow-x:hidden;
}

img {
	max-width: 100%;
}

a {
	color: var(--link);
}

.avatar {
	width: 200px;
	height: 200px;
}

.member img {
  float:left;
  width:100px;
  height:100px;
  border-radius:50%
}

.wrapper {
	position: relative;
	top: 50%;
	margin: auto;
	margin-top: -200px;
	width: 850px;
	height: 400px;
}

.sidebar {
	float: left;
	width: 200px;
	height: 100%;
}

.main {
	float: right;
	width: 630px;
	height: 100%;
	border: 3px double var(--accent);
	box-sizing: border-box;
	overflow-x: hidden;
	overflow-y:scroll;
}

.menu {
	padding: 24px;
	text-align: center;
}

.menu a {
	display: inline-block;
	padding: 3px 6px;
	color: var(--accent);
	margin-bottom: 6px;
	text-decoration: none;
	font-weight: 500;
	text-transform: lowercase;
	letter-spacing: 1px;
}

.menu a:hover {
	background: var(--link);
	color: var(--bg);
	text-decoration:underline;
}

h1, h2, h3, h4 {
	color: var(--special);
}

h1 {
	font-size: 20px;
	background: var(--accent);
	color: var(--bg);
	display: inline-block;
	padding: 4px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h2 {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	border-bottom: 1px dashed var(--accent);
	padding-bottom: 4px;
}

figure {
display: inline-block;
    padding:0;
    margin:0;
    width:150px;
}

.imgtxt {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  position: relative;
}
.imgtxt span {
  opacity: 0;
  text-align:center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 15px;
  color: #FFF;
  filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
}
.imgtxt:hover span, .imgtxt:focus span {
  opacity: 1;
}
.imgtxt:hover img, .imgtxt:focus img {
  filter: grayscale(100%);
  }
.imgtxt img, .imgtxt img {
  filter: grayscale(0%);
    }
    

.left {float:left; width:40%;}
.right {float:right; width:55%;}    

}


/*mobile*/

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

:root {
    --bg: #000;
    --link:#D655B8;;
    --accent:#0896E8;
    --font:#F0E7EF;
    --special:#F2BD10;
}

body, html {
	padding: 0;
	margin: 0;
	height: 100%;
	background: var(--bg);
	color: var(--font);
	font-family: 'Comic Sans MS';
	box-sizing: border-box;
}

.wrapper {
	position: relative;
	margin: auto;
    top:5%;
	width: 90%;
    display: flex;
    flex-wrap: wrap;
}

.page h1:first-child {
	margin-top: 0;
}
b, i, u {color:var(--special)}

.page {
	padding: 5px;
	overflow-y:scroll;
	overflow-x:hidden;
}

img {
	max-width: 100%;
}

a {
	color: var(--link);
}

.avatar {
	width: 200px;
	height: 200px;
    flex:1;
    float:left;
}

.sidebar {
	float: left;
	width: 100%;
    margin-bottom:3%
}

.main {
	float: none;;
	border: 3px double var(--accent);
	box-sizing: border-box;
	overflow-x: hidden;
	overflow-y:scroll;
    margin-bottom:3%;
}

.menu {
	padding: 4px;
	text-align: right;
    float:right;
}

.menu a {
	display: inline-block;
	padding: 3px 6px;
	color: var(--accent);
	margin-bottom: 6px;
	text-decoration: none;
	font-weight: 500;
	text-transform: lowercase;
	letter-spacing: 2px;
}

.menu a:hover {
	background: var(--link);
	color: var(--bg);
	text-decoration:underline;
}

h1, h2, h3, h4 {
	color: var(--special);
}

h1 {
	font-size: 20px;
	background: var(--accent);
	color: var(--bg);
	display: inline-block;
	padding: 4px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h2 {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	border-bottom: 1px dashed var(--accent);
	padding-bottom: 4px;
}

figure {
display: inline-block;
    padding:0;
    margin:0;
    width:150px;
}

.imgtxt {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  position: relative;
}
.imgtxt span {
  opacity: 0;
  text-align:center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 15px;
  color: #FFF;
  filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
}
.imgtxt:hover span, .imgtxt:focus span {
  opacity: 1;
}
.imgtxt:hover img, .imgtxt:focus img {
  filter: grayscale(100%);
  }
.imgtxt img, .imgtxt img {
  filter: grayscale(0%);
  }
    
.left {flex:2; width:100%;}
.right {flex:1; width:100%;}   
}