a {
	text-decoration: none;
	color:black;
}

a:hover{
	text-decoration:none;
	color:blue;
}

.background{
	background-image: url(./image/background.png);
    height: 20%;
	background-size: contain;
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
	align-items: center;

} 
.title{
	font-weight: bold;
	font-size: 1.5vw;
	height: 20%;
	margin:25px 0px 20px 0px;
	color: #ffffff;
}
.introduce{
	font-size: 1vw;
 color: rgb(255,255,255,0.85);
}
.cardone{
	padding: 30px;
	margin: 10px;
    width: 60%;
	height:calc(38% - 15px);
	background-size: cover;
	display: flex;
	justify-content: space-between;
    background-color:  #f3f7fd;
	border-radius: 10px;
    transition: transform 0.2s;
}
.cardone:hover{
transform: scale(1.05); 
}
.page{
	height: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.cardtitle{
	font-size: 1.5vw;
	font-weight: bold;
	color: #000000;
	margin-bottom: 40px
}
.word{
	font-size: 1.1vw;
	color: #333333;
}
.card-left{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	
}
.card-right{
	width: 18vw;
	height: 100%;
}
.card-button{
	display: flex;
	justify-content: start;
}
.button{
	cursor: pointer;
	font-size: 1vw;
	padding: 10px 30px;
	border: 1px solid rgb(216, 216, 216);
	background-color: #ffffff;
	margin-right: 30px ;
}


