* { box-sizing: border-box;}

body {
  background: #ffffff;
  background: linear-gradient(to right bottom, #eebbff, #bbffff);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#bigtitle {
	position: relative;
	/*margin-top: 50px;
	margin-left: 25%;*/
	display: inline-block;
}
#titletext {
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	margin: 0px;
	text-align: center;
	font-size: 50px;
	font-weight: 700;
	font-style: italic;
}

.popout {
	position: absolute;
	top: calc(100% + 50px);
	left: 80%;
	z-index: 1;
	text-align: center;
	transform: rotate(-30deg);
	border: 2px solid white;
	background-color: rgba(127, 127, 127, 0.3);
	padding: 10px;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 300;
	margin: 0px;
	display: flex;
}

.itemlist {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  list-style-position:inside;
  text-align: left;
  font-weight: 400;
 /** padding-left: 35%;**/
  color: #ff00ff;
}
/*links*/
a:link {
  color: #ff00ff;
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  color: #ccff00;
  text-shadow: 2px 2px 5px #00bf00;
  text-decoration: none;
}
a:active {
  color: #00bf00;
  text-shadow: 2px 2px 5px #ccff00;
  text-decoration: none;
}

