/* vietnamese */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300;
  src: local('Quicksand Light'), local('Quicksand-Light'), url(https://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_pgHYYQML_B48.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300;
  src: local('Quicksand Light'), local('Quicksand-Light'), url(https://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_pgHYYQcL_B48.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300;
  src: local('Quicksand Light'), local('Quicksand-Light'), url(https://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_pgHYYT8L_.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body { 
    opacity:0;
    transition: opacity 3s;
    -webkit-transition: opacity 3s;
	background-color: black;
}

p {
	color: white;
	font: 85px 'Quicksand', cursive;
}

a {
	color: white;
	text-decoration: none;
	animation: a-nonhover 0.1s linear;
}

a:hover {
	color: gray;
	text-decoration: none;
	animation: a-hover 0.1s linear;
}

@keyframes a-hover {
	0% { color: white; opacity: 1; }
	100% { color: gray; opacity: 0.75; }
}

@keyframes a-nonhover {
	from { color: gray; opacity: 0.75; }
	to { color: white; opacity: 1; }
}

.link {
    text-decoration: none;
    transition: color .2s, border-bottom-color .2s;
    border-bottom: 2px solid transparent;
    color: white;
    font: 24px 'Quicksand', cursive;
}

.link:hover {
    color: white;
    border-bottom-color: #e74c3c;
    outline: none;
	font: 24px 'Quicksand', cursive;
} 

ul {
    list-style-type: none;
    padding: 0;
    margin-top: .5em;
    line-height: 1.6em;
}

.left {
    float: left;
}

.right {
    float: right;
}

.icon {
    width: 16px;
    display: inline-block;
}

.service {
    width: 100px;
    display: inline-block;
    color: white;
	font: 24px 'Quicksand', cursive;
}

.container {
  position: absolute;
  top: 50%;
  margin-top: -200px;
  left: 0;
  width: 100%;
}

.content {
    text-align: left;
    width: 600px;
    margin: 0 auto;
    padding-left: 30px;
}