@charset "utf-8";
@import url("lightbox.css");
@import url("responsiveslides.css");

	/*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)
	
}

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

.gallery {
	margin: 200px auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	padding: 15px;
	width: 85%;
	list-style-type: none;
	list-style-image: none;
	background-color: rgba(255,255,255,0.5);
	border: 2px solid rgba(255,255,255,1.00);
	border-radius: 15px;
}

.gallery li {
	background-color: rgba(255,255,255,1.00);
	width: 150px;
	height: 150px;
	margin: 50px;
	
}


@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%;
		
	}
	
	.gallery {
		
		margin: 10px auto;
	}
	
}



