@charset "UTF-8";
/* CSS Document */

body,
html {
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	color:#FFF;
	background:#222222 url(images/Van-Anh-background.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width:100%;
	height:100%;
	margin:0;
	padding:0;
}

a {
	cursor:pointer !important;
}

a img {
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

a img:hover {
	opacity:0.5;
}

.content {
	width:600px;
	height:100%;
	margin:0 auto;
	text-align:center;
}

.logo {
	width:350px;
	height:auto;
	margin:100px 0 25px 0;
}

.text {
	width:350px;
	height:auto;
	margin:0 0 50px 0;
}

.buttons {
	display:block;
	width:300px;
	margin:0 auto;
}
.buttons a,
.buttons a img {
	width:100px;
	height:100px;
	float:left;
}
.buttons a {
	margin-bottom:100px !important;
}


/* Hover CSS */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
	position: relative;
	z-index: 2;
}
/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
/* Position tooltip above the element */
[data-tooltip]:before {
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-bottom: 5px;
	margin-left: -60px;
	padding: 10px;
	width: 100px;
	-webkit-border-radius: 5px;
	-moz-border-radius:    5px;
	border-radius:         5px;
	background: #333;
	color: #fff;
	font-weight:bold;
	content: attr(data-tooltip);
	text-transform:uppercase;
	text-align: center;
	font-size:12px;
	line-height: 1.2;
}
/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	width: 0;
	border-top: 5px solid #333;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	content: " ";
	font-size: 0;
	line-height: 0;
}
/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
	visibility: visible;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}


@media all and (max-width: 1500px) and (min-width: 1300px) {

.content {
	width:400px;
}

.logo {
	width:250px;
	height:auto;
	margin:100px 0 15px 0;
}

.text {
	width:250px;
	height:auto;
	margin:0 0 30px 0;
}

.buttons {
	display:block;
	width:210px;
	margin:0 auto;
}
.buttons a,
.buttons a img {
	width:70px;
	height:70px;
	float:left;
}

}

