*{
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans TC', sans-serif;
	font-weight: 700;
}

body{
	overflow: hidden;
	height: 100%;
	background-color: black;
}

.loading{
	position: fixed;
	width: 100%;
	height: 100vh;
	max-width:100%;
	z-index: 9999;
	background-color: #5aa6a5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wavy{
	position: relative;
	-webkit-box-reflect: below -12px linear-gradient(transparent, rgba(0,0,0,0.2)) ;
}

.wavy span{
	position: relative;
	display: inline-block;
	color: white;
	font-size: 2em;
	animation: animate 2s ease-in-out infinite;
	animation-delay: calc(0.2s * var(--i));
}

@keyframes animate{
	0%{
		transform: translateY(0px);
	}
	20%{
		transform: translateY(-20px);
	}
	40%,100%{
		transform: translateY(0px);
	}
}

.cover{
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9998;
	transition: 1s;
	opacity: 1;
}

.cover .fake-link{
	width: 370px;
	height: 200px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-70%);
	cursor: pointer;
}

.cover img{
	object-fit: cover;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	transition: 1s;
	opacity: 1;
}

.cover map area{
	cursor: pointer;
}

.s1{
	position: absolute;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.s1 video{
	position: fixed;
	width: 100vw;
	height: 100vh;
	object-fit: cover;	
}

.menu-upper{
	position: absolute;
	z-index: 2;
	background-color: #5aa6a5;
	width: 100%;
	height: 50vh;
	top: 0%;
}

.menu-lower{
	position: absolute;
	z-index: 1;
	background-color: #5aa6a5;
	width: 100%;
	height: 50vh;
	bottom: 0%;
}

.logo{
	display: table-cell;
    height: 100vh;
    text-align: center;
    width: 100vw;
    vertical-align: middle;
    z-index: 100;
    opacity: 0;
}

img{
	width: 350px;
}

.wrapper{
	display: table-cell;
    height: 100vh;
    vertical-align: middle;
    width: 100vw;
    right: 5;
}

.btn{
	margin-top: 50px;
}

.btn a{
	color: #426a70;
	text-decoration: none;
	padding: 10px 70px;
	border: 2px solid #426a70;
	background: #f5f0e6;
	font-weight: 500;
}

.btn a:hover{
	background-color: white;
	color: #6a9d9f;
	text-decoration: none;
}

@media only screen and (max-width: 768px){
	.cover img{
		content: url(https://i.imgur.com/4LvRL0L.png);
		z-index: 2;
	}

	.cover .fake-link{
		right: 0;
		height: 130px;
		width: auto;
	}
}










