*{
  margin: 0;
  padding: 0;
}

body {
	height: 100vh;
	text-align: center;
	display: flex;
	flex-direction: column;
	max-width: 100%;
	font-family: 'Work Sans', sans-serif;
	background-color: white;
}

.logo-top{
	width: 40px;
	height: 40px;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 10000;
	border-radius: 40px;
	transition: 0.3s ease;
}

img.logo{
	width: 100%;
	height: 100%;
	transform: rotate(0deg);
	transition: 0.3s ease;
}

img.logo:hover{
	transform: rotate(35deg);
	transition: 0.3s ease;
}

::selection {
  background: #fff422;
}

::-moz-selection {
  background: #fff422;
}

#wrapper{
	margin: 0 auto !important;
	width: 100%;
	max-width: 700px;
  flex: 1 0 auto;
}

p{
	padding: 0;
	margin: 0;
}

a{
	color: inherit;
	text-decoration: none;
	font-weight: 600;
}

a:hover{
	color: inherit;
	text-decoration: underline;
	font-weight: 600;
}

header{
	margin: 0;
	padding: 0;
 	z-index: -99;
	top: 0;
	height: auto;
	margin-top: 10vh;
	width: 100%;
}

h1.title, .title-link, .title-link:hover{
	font-family: 'Work Sans', sans-serif;
	width: 100%;
	font-size: 90px;
	line-height: 65px;
	font-weight: 700;
	color: #1558ff;
	text-decoration: none;
}

hr.title-line{
	width: 200px;
	margin: 0 auto;
	margin-top: 30px;
}

h2.subtitle{
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 1.5px;
	text-align: center;
	color: #111111;
	margin-top: 20px;
}

.description{
	padding: 10px 20px 0 20px;
}

.form-container{
	font-weight: 400;
	width: 350px;
	color: #111111;
	padding: 20px;
	margin: 0 auto;
	font-size: 17px;
	margin-top: 15px;
}

.paragraph-number {
	font-family: 'Work Sans', sans-serif;
	color: #111111;
	border: 1px solid #111111;
  max-width: 40px;
  margin: 0;
  margin-left: 5px;
  padding-top: 6px;
  padding-bottom: 6px;
	background: none;
	font-weight: 700;
	margin-top: 1px;
	margin-bottom: 1px;
	text-align: center;
	border-radius: 0;
}

.paragraph-number:focus {
  border: 2px solid #111111;
	margin-top: 0;
	margin-bottom: 0;
}

.generate-button, #copy-button {
	width: 120px;
	height: 40px;
	margin-top: 20px;
	font-size: 15px;
	font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: white;
  background-color: #111111;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease 0s;
  cursor: pointer;
  outline: none;
}

.generate-button:hover, #copy-button:hover {
  background-color: #1558ff;
  box-shadow: 0px 5px 10px rgba(0,0,0, 0.25);
  transform: translateY(-3px);
}

button:focus {
  outline: none;
}

.text-container{
	width: 100;
	display: flex;
	align-items: center;
	text-align: center;
}

#targetText{
	margin: 0 auto;
}

input {
  font-size: 16px;
  padding: 5px;
  margin: 10px 0;
  border: 1px solid #fff;
  color: #2C3238;
}

input:focus {
  outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}

.generated-text {
  color: #111111;
	text-align: center;
	padding: 10px;
}

.card-header{
	background: none;
	border: 0;
	font-size: 15px;
	margin-top: 5px;
	padding: 10px 0 10px 0;
}

.card-header a{
	font-weight: 400;
}

.card{
	margin: 0 auto;
	border: 0;
	background: none;
	font-size: 14px;
	padding: 0;
	font-weight: 300;
}

.card-body{
	padding: 0;
	padding: 0;
}

.far.chevron{
	width: 10px;
	margin-left: 10px;
	display: inline-block;
}
.card-header .far {
	transform: rotate(180deg);
  transition: .3s transform ease-in-out;
}
.collapsed .card-header .far {
  transform: rotate(0deg);
}
.card-header .collapsed  .far {
  transform: rotate(0deg);
}

#copyright{
	font-size: 13px;
	font-weight: 300;
	text-align: center;
	width: 100%;
	bottom: 0;
	left: 0;
	height: 50px;
	margin: 0;
	padding: 20px;
	color: #111111;
	align-self: flex-end;
  flex-shrink: none;
}

@media (max-width: 768px) {
	h1.title, .title-link, .title-link:hover{
	font-size: 70px;
	line-height: 50px;
	}
	h2.subtitle{
			font-size: 18px;
	}
}

@media (max-width: 576px) {
	h1.title, .title-link, .title-link:hover{
	font-size: 60px;
	line-height: 40px;
	}
	h2.subtitle{
			font-size: 16px;
	}
}
