@charset "UTF-8";

body {
	color: #000000;
	background:#FCEBFF;
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size:1em;
	line-height:1.5em;
}

#wrapper {
    position: relative;
	text-align:center;
    margin: 15% auto auto auto;
    width:550px;
	min-width:300px;
	min-height:100%;
	}

h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 8em;
}

p {
	margin-bottom:40px;
	font-family: 'Barlow', sans-serif;
	}

a {
	color:#000;
	text-decoration:none;
    padding-left:10px;
    padding-right:10px;
    font-size:0.75em;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-block;
    position: relative;
	}
	
a:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
  visibility: visible;
  background-color: #000000;
  -webkit-transition: all .1s ease;
  transition: all 0.3s ease;  
  -webkit-transform: scaleX(0.7);
  -ms-transform: scaleX(0.7);
  transform: scaleX(0.7);
}

a:hover:after {
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
	
.clear {
	clear:both;
}