address, aside, b, footer, html, body, header, 
nav, h1, h2, h3, h4, h5, h6, a,
ul, li, strong, main, button, i, svg,
section, img, div, p, form,
fieldset, label, input, textarea,
span, article, footer, time, small {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  box-sizing: inherit;
  background: transparent;
}

ul {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="submit"],
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button,
input[type="submit"] {
  cursor: pointer;
}

.group:after {
  content: "";
  display: block;
  clear: both;
}

body {
	background-color: #8940fa;
	font-family: 'Karla', sans-serif;
	color: #ffffff;
	font-size: 14px;
}

header {
	background-color: #292f36;
	margin-bottom: 24px;
	padding: 0 24px;
}

.header-container {
	position: relative;
	width: 456px;
	height: 72px;
	margin: auto;
}

h1 {
	font-size: 26px;
	line-height: 36px;
	font-weight: 700;
	letter-spacing: -1px;
	display: inline-block;
	position: absolute;
}

h1:nth-of-type(2) {
	top: 36px;
}

.links-container {
	position: absolute;
	float: right;
	width: 72px;
	height: 72px;
	top: 0;
	right: 0px;
	font-size: 26px;
	color: #979797;
}

.links-container > a {
	height: 36px;
	width: 36px;
	display: inline-block;
	position: relative;
	transition: 0.2s;
}

.links-container > a:hover {
	color: #ffffff;
}

.links-container > a > svg {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

.person-url, .email-url {
	top: -7px;
}

input, textarea {
	color: #292f36;
	background-color: #22dfbd;
	padding: 8px 12px;
	border-radius: 12px;
	transition: 0.2s;
}

textarea {
	height: 68px;
	display: block;
	width: 432px;
	margin: 12px auto;
	font-size: 14px;

}

.number-container {
	width: 444px;
	margin: 12px auto;
	display: flex;
	line-height: 32px;
	transform: translateX(6px);
	font-size: 16px;
}

input {
	height: 16px;
	text-align: center;
	margin-left: 12px;
	flex: auto;
	font-size: 14px;
}

input:focus, textarea:focus {
	background-color: #24e8c4;
}

.divider {
	min-width: 480px;
	margin: 24px 0;
	border-top: solid #292f36 4px;
}

p {
	font-size: 16px;
	width: 432px;
	margin: 12px auto;
}

.center {
	width: auto;
	text-align: center;
}

.center > a {
	padding: 8px 14px;
	border-radius: 9px;
	border: solid 2px rgba(255, 255, 255, 0.4);
	transition: 0.2s;
}

.center > a:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.italic {
	font-style: italic;
	font-size: 14px;
	background-color: #292f36;
	padding: 8px 12px;
	width: 432px;
	border-radius: 25px;
	white-space: pre-wrap;
}

.warning {
	padding: 8px 14px;
	border-radius: 9px;
	border: solid 2px rgba(255, 0, 0, 0.4);
	transition: 0.2s;
}