html {
	font-size: 16px;
}

@media (min-width: 600px) {
  html { font-size: 18px; }
}
@media (min-width: 800px) {
  html { font-size: 20px; }
}

body {
	color: #5c2483;
	line-height: 1.5;
}

h1 {
	font-size: 1.8rem;
	color: #009fe3;
	margin: 0;
}

p {
	margin: 0 0 1rem 0;
}

.right {
	direction:rtl;
}

a {
	text-decoration: none;
	color: #009fe3;
}
a:hover {
	text-decoration: none;
	color: #5c2483;
}

nav {
	margin: 1rem 0;
}

/* General button style (reset) */
.btn {
	border: none;
	font-family: inherit;
	font-size: 0.5rem;
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 0.5rem 1rem;
	display: inline-block;
	margin: 0 0.5rem 0.5rem 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

/* Button 1 */
.btn-1 {
	border: 1px solid #009fe3;
	color: #009fe3;
}

/* Button 1a */
.btn-1a:hover,
.btn-1a:active {
	background: #c9e8fb;
}

.wrapper {
	padding: 0 2rem;
}

footer {
	margin: 2rem 0;
}