body {
	min-height: 100vh;
}
.center-column {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 80%;
}

.word-div {
	position: relative;
	display: inline-block;
	overflow: hidden;
	transition: width 0.8s ease-in-out;
}
.userword {
	display: inline-block;
}
.st {
	margin-bottom: 0px;
	display: inline-block;
	position: absolute;
	width: 0px;
	background-color: #000;
	height: 0px;
	padding-top: 1px;
	padding-bottom: 1px; 
	transition: width 0.3s ease-in;
}
.poem-line {
	overflow: hidden;
	white-space: pre-wrap;
	margin: 2px 0 2px 0;
	/*padding: 2px 0 2px 0;*/
	height: 30px;
	/*border-top: solid 2px red;*/
}
.end-line {
	height: 35%;
	border-bottom: 1.5px black solid;
	display: none;
}
.empty-line {
	/*border-top: solid 2px red;*/
	margin: 2px 0 2px 0;
	/*padding: 2px 0 2px 0;*/
	height: 30px;
}
.prefix {
	display: inline-block;
	min-width: 50px;
}
.substitute {
	/*border-top: solid 2px red;*/
	font-family: 'Libre Baskerville', serif;
	/*display: inline-block;*/
	margin: 2px 0 2px 0;
	height: 30px;
	width: 100%;
}
.ins-omit-text-input {
	font-size: 11pt;
	padding: 2px;
	border-radius: 3px;
	border: #666 1px solid;
	width: 85%;
	font-family: 'Libre Baskerville', serif;
	transition: border 0.8s ease, background-color 1.4s ease, box-shadow 0.3s ease;
	background-color: #FFF6;
	outline: none;
}
.ins-omit-text-input:focus {
	box-shadow: 0px 0px 8px -2px #000;
}
.remove-outline {
	border: transparent 1px solid;
	background-color: transparent;
	/*transition: border 0.5s ease;*/
}
.center-column h2 {
	font-size: 4vh;
}
.failure {
	background-color: #A00;
	border-color: #700;
	color: #300;
}
.failure:hover {
	background-color: #D20;
	border-color: #A00;
	color: #200;
}
#create {
	flex-basis: 100%;
	margin-bottom: 2%;
}
#info-submit-div {
	width: 100%;
	height: auto;
	overflow: hidden;
	transition: all 1s ease-in-out;
}
#info-submit-div.slide-up {
	height: 0px;
}
#info-desc {
	text-align: center;
	font-style: italic;
	margin-bottom: 3%;
	font-size: 2.3vh;
}
.forms-line {
	margin: 2% 0;
	display: flex;
	flex-basis: 100%;
	align-items: center;
}
.forms-line:nth-child(3) {
	margin-top: 4%;
}
.user-info-form {
	position: relative;
	display: inline-block;
	margin-right: 2%;
	min-width: 40%;
}
.user-info-form:nth-child(2) {
	width: 50%;
}
.user-info-form input {
	border-radius: 3px;
	border: #666 1px solid;
	font-family: 'Libre Baskerville', serif;
	background-color: #FFF6;
	outline: none;
	transition: all 0.5s ease;
	height: 19px;
}
#first-name-input {
	width: 70%;
}
#last-name-input {
	width: 80%;
}
#email-input {
	width: 80%;
}
#ig-input {
	width: 50.5%;
}
#subscribe-checkbox {
	width: 19px;
	height: 16px;
}
.user-info-form input:focus {
	box-shadow: 0px 0px 8px -2px #000;
}
.user-info-form span {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.4vh;
	margin-right: 10px;
}
#email-message {
	font-family: 'Montserrat', sans-serif;
	font-size: 10pt;
	color: #C00;
	background-color: #FDD;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: -34px;
	z-index: 3;
	padding: 5px 20px;
	border-style: solid;
	border-color: #f00;
	border-width: 2px;
	border-radius: 3px;
}
#info-forms {
	margin-bottom: 50px;
}
#info-forms .nav-button {
	position: relative;
	/*display: inline-block;*/
	width: 12%;
	height: 35px;
	margin-top: 1%;
}
#info-forms .nav-button span {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin-top: 3px;
	text-decoration: inherit;
	transition: all 0.2s ease-in-out;
}
#submit-text {
	opacity: 0;
}
#loading-div {
	position: relative;
	display: inline-block;
	margin-left: 2%;
}
#loader {
	display: inline-block;
	position: absolute;
	width: 46px;
	top: -20px;
}
#checkmark {
	display: inline-block;
	position: absolute;
	bottom: -3px;
	left: 7px;
	z-index: 4;
	color: #050;
	transform: rotateZ(-45deg);
	border-color: #0F0;
	border-left: solid 3px;
	border-bottom: solid 3px;
	animation: check forwards 0.6s ease;
}
@keyframes check {
	0% {
		width: 0px;
		height: 0px;
	}
	20% {
		width: 2px;
		height: 6px;
	}
	100% {
		width: 25px;
		height: 8px;
	}
}
#poem-section {
	font-size: 12pt;
	/*overflow: all;*/
}
#guide {
	text-align: center;
	font-size: 2.6vh;
	line-height: 16pt;
	margin-bottom: 20px;
	transition: height 0.6s ease;
}
#forms {
	display: inline-block;
	position: absolute;
	width: 50%;
	height: auto;
	margin-bottom: 10px;
}
#submit-text-area {
	position: relative;
	background-color: #FFF6;
	border: 1px #666 solid;
	border-radius: 3px;
	outline: none;
	font-family: 'Libre Baskerville', serif;
	font-size: 14px;
	line-height: 30px;
	resize: none;
	width: 98%;
	height: 390px;
	padding: 5px 5px;
	transition: box-shadow 0.3s ease;
}
#submit-text-area:focus {
	box-shadow: 0px 0px 8px -2px #000;
}
#poem-submit-button {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	position: relative;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 40px;
}
#submit-message {
	display: inline-block;
	text-align: center;
	position: relative;
	top: -300px;
	right: 0px;
	width: 45%;
}
#poem-container {
	position: absolute;
	/*border-top: solid 2px red;*/
	font-family: 'Libre Baskerville', serif;
	top: 0px;
	left: 0px;
	width: 48%;
	display: block;
}
#submit-strikethrough-button {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	position: relative;
	display: block;
	bottom: 0px;
	margin: 3% 0;
	width: 100%;
	height: 35px;
}
#strikethrough-message {
	font-size: 17px;
	cursor: default;
	position: relative;
	bottom: -10px;
	width: 100%;
	text-align: center;
	min-height: 35px;
}

#ins-omit-container {
	/*border-top: solid 2px red;*/
	font-family: 'Libre Baskerville', serif;
	position: absolute;
	/*top: 0px;*/
	right: 0;
	display: none;
	width: 50%;
	/*min-width: 10px;*/
}
#ins-omit-container p div {
	display: inline-block;
	min-width: 46px;
	margin-right: 3px;
}
#ins-omit-submit {
	position: relative;
	margin: 0 auto 0 auto;
	height: 35px;
	width: 95%;
	font-size: 16px;
}

#view-and-save {
	display: flex;
	justify-content: space-around;
	flex-basis: 100%;
	margin: 7px 0; 
}
#view-and-save a {
	width: 40%;
}
/*#view-button {
	width: 40%;
}*/
#all-user-text h2 {
	/*font-family: 'Montserrat', sans-serif;*/
	text-align: left;
}
#all-user-text div p {
	width: 100%;
}
.left-text {
	width: 30%;
	display: inline-block;
}
.right-text {
	width: 40%;
	display: inline-block;
}