
html	{
	font-family: Helvetica, sans-serif; 
	line-height: 1.5;
	color: white; 
	font-size: 18px;
}

body	{
	max-width: 1000px;
	align-content: center;
	margin: 0 auto;
}

.school {
  background-color: violet;
}

.home {
  background-color: mediumpurple;
}

.bedroom  {
  background-color: purple;
}

.woods  {
  background-color: #003151;
}

h3 , p , h2	{
	text-align: center;
  padding: 1fr
}

h3	{
	text-shadow: 2px 2px 5px darkred;
}

a:hover {
	color: lightpink;
	font-size: 105%;
	transform: scale(1.5);
	transition: border-color 0s, font-size 0.3s ease-out;
}

a {
	text-decoration: none;
	color: lightpink;
	transition: border-color 0s, font-size 0.3s ease-in;
}

a:visited {
	color: ;
}

#change {
  cursor: pointer;
}

.text-box {
  border: 5px solid white;
  border-style: double;
  background: rgba(0, 0, 9, .5);
  /*opacity: 0.8;*/
  border-radius: 10px 10px;
  cursor: pointer;

  height: 310px;
  padding: 1fr
}

#next-button {
  border: 5px solid white;
  border-radius: 10px 10px;

  padding: 1fr 1fr;
  text-align: center;
  margin: 2px 2px;
  cursor: pointer;

  background: rgba(0, 0, 9, .5);
}


.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 100px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: purple;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 16px 16px;
  z-index: 1;

  text-align: center;
  border: 2px solid white;
}

.dropdown:hover .dropdown-content {
/*  display: block;
  cursor: pointer;

  background-color: purple;*/
}

span	{
	width: 100px;
}









