html {
	font-size: 18px;
}

/*
	Our editor defaults to 16px
*/

/* Absolute Measurement Units */
#px {
	font-size: 16px;
}
#pt {
	font-size: 12pt;
}
#pc {
	font-size: 1pc;
}

.px {
	font-size: 30px;
  border: 2px solid black;
  background-color: lavender;
  padding: 0.5em;
}

/* 
	Relative Measurement Units 
	em - scales off of parent element
	rem - scales off of root element
*/
#em {
	font-size: 1em;
}
#rem {
	font-size: 1rem;
}

#typh {
  width: 100%;
  max-width: 500px;
  float: left;
  margin: 0.5em;
}

.clearfix:after {
	content: "";
  clear: both;
  display: table;
}

#boxes {
	height: 300px;
  width: 100%;
  border: 1px solid black;
  position: relative;
  background-image: url("https://projects.codecraftworks.com/web/LGtU5tLtbIDVMaxrLEww/assets/FJee3CoXwAAgz2i.png"), linear-gradient(90deg, rgba(131,58,180,0.4) 0%, rgba(253,29,29,0.4) 50%, rgba(252,176,69,0.41) 100%), url("https://projects.codecraftworks.com/web/LGtU5tLtbIDVMaxrLEww/assets/Dagobah.jpeg");
  background-size: 20%, contain, 50%;
  background-repeat: no-repeat;
  background-position: bottom right, center, 20% 30%;
}

#box1,
#box2,
#box3 {
  height: 100px;
  width: 100px;
  float: left;
  margin-left: 1em;
}
#box1 {
	background-image: linear-gradient(23deg, rgba(255,93,93,1) 0%, rgba(255,152,82,1) 100%);
  position: relative;
  top: 3em;
  left: 2em;
}
#box2 {
  text-align: center;
  font-family: impact;
  font-size: 3rem;	
  background-repeat: no-repeat;
  background-position: center;
  border: 5px dotted white;
  position: absolute;
  top: 10em;
  z-index: 2;
  padding: 0.5em;
}
#text {
	background-image: url("https://projects.codecraftworks.com/web/LGtU5tLtbIDVMaxrLEww/assets/img_36181.jpg");
  background-clip: text;
  color: transparent;
}
#box3 {
	background-color: blue;
  position: fixed;
  bottom: 4em;
  right: 0.5em;
}

.para {
  text-align:right;
  border:2px solid black;
  background: lavender;
}
.image{
  text-align:left;
  width:50%;
  Max-width: 500px;
  Float:left;
  Z-index:1;
}
.image img {
	padding: 0.5em;
  border: 1px solid red;
  margin: 0.5em;
}

.title {
	background-color: rebeccapurple;
  color: white;
  padding: 0.5em;
  text-align: center;
  position: sticky;
  top: 0em; 
  z-index: 1;
}
#overflow {
	border: 1px solid red;
  padding: 0.5em;
  margin-bottom: 1em;
  height: 100px;
  overflow: auto;
  resize: both;
}