@charset "UTF-8";
:root {
	--mygreen: #33ff33;
	--mylink: white;
}
* {
	margin: 0;
	padding: 0;
  font-size: 100%;
	list-style: none;
	border: none;
}
body {
	color: var(--mylink);
	background-color: #aaa;
	font-family: Helvetica, Arial, sans-serif;
  font-size: 2vw;
	line-height: 1.25;
}
input, select, textarea { border: thin gray solid }

#wrapper {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  /* background: -webkit-linear-gradient(43deg, #0f0, #fff); */
  /* mod */
  background-size: 800% 800%;
  background: radial-gradient(
    circle,
    pink,
    papayawhip,
    black,
    paleturquoise
  );
  animation: gradient 20s ease-in-out infinite;
  /* mod end */
  background-clip: text;
  color: rgba(0,0,0,0)
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#wrapper a { text-decoration: underline }
h1 {
  font-size: 10vw;
  font-style: italic;
  line-height: 0.95;
  margin-top: 40px;
}
h2 {
  font-size: 10vw;
  font-style: italic;
  line-height: 1.25;
  margin-top: 60px;
}
.sticky {z-index: 1;float:left;height: 100%;position: -webkit-sticky;position:sticky;top:0;left:0;transform-origin:center;transform:rotate(90deg);}
.ytvideo {aspect-ratio:16/9; width:100%}
.just {text-align:justify;margin-bottom:20px;}
.center {text-align:center}

/* MUST AT THE END */
@media (orientation: portrait) {
	#wrapper { width: 90%; font-size: 4vw; }
  h1 { font-size: 15vw }
  h2 { font-size: 15vw }
}
