@charset "utf-8";

	/*font-family: 'Cabin', sans-serif;

    font-family: 'Indie Flower', cursive;

    font-family: 'Josefin Sans', sans-serif;

    font-family: 'Noto Sans TC', sans-serif;*/

body {
	
	margin: 0;
	padding: 0;
	background-color: rgba(90,156,200,1.00);
	background-repeat: no-repeat;
	background-size: cover;

}

.title {
    width: 1900px;
    height: 100px;
    padding: 20px;
    font-family: 'Cabin', sans-serif;
    font-size: 1.5em;
    margin-right: auto;
    margin-left: auto;
    color: rgba(255,255,255,1.00);
    text-shadow: 3px 3px rgba(0,0,0,1.00);
}

header {
	
	height:150px;
}

nav {
	
	background-color: rgba(0,0,0,1.00);
	height: 100px;
}

ul {
	margin: 0px auto;
	padding: 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 85%;
	list-style-type: none;
	list-style-image: none;
	text-align: center; 

}

ul li {
	
	display: block;
	height: 50px;
	width: 25%;

}

ul li a {
	
	display: block;
	height:73px;
	padding-top: 27px;
	color: rgba(28,207,216,1.00);
	font-family: 'Josefin Sans', sans-serif;
	font-size: 2.2em;
	

}

ul li a:hover {
	
	background-color: rgba(103,24,170,1.00)
	
}

.body {
	
	height:650px;
	width: 1000px;
	background-color: rgba(74,74,74,.40);
	margin-top: 1%;
	margin-right: auto;
	margin-left: auto;
	padding: 50px;
	font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5em;
	
	
}

.logo {
    
	height: 100px;
    width: 100px;
    background-image: url("../../project_03/images/tmcc_logo_02.png");
    float: right;
    margin-right: 5%;
	margin-top: 1%;
	margin-bottom: 1%;
}

@media only screen and (max-width: 640px){
	
	.title {
		font-size: .9em;
		width: 600px;
	}
	
	ul li a {
		
		font-size: 1.2em;
    }
	
	.logo {
		
		margin-right: 5%;
		margin-top: 1%
		
	}
	
	.body {
		
		width: 500px;
		height: 1000px;
		
	}
	
}

