@charset "utf-8";
/* CSS Document */
*
{
	margin: 0;
	padding: 0;		
}

body{
	background-image: url("../Picture/5532862.jpg");
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

.detail-txt {
	background: rgba(255, 255, 255, 0.5);
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.detail-txt h2 {	
	text-align: center;
	font-weight: 800;
}

.download-txt {
	background: rgba(255, 255, 255, 0.5);		
	padding-left: 15rem;
	padding-right: 15rem;
	padding-bottom: 1rem;
	
}

.download-txt h4 {
	background-color: #660000;
	padding: 5px;
	color: #FFFFFF;
}

.download-txt ul li a{	
	text-decoration: none;
	padding: 5px;
	font-size: 1.2rem;
	color: #222;
}

.download-txt ul li a:hover{
	background-color: #660000;
	color: #FFFFFF;
}

.img-detail {
	background: rgba(255, 255, 255, 0.5);
	padding-top: 1rem;
	
}

.img-pic {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	padding-bottom: 2rem;
}

.img-pic img {	
	width: 100%;
}



@media screen and (max-width:1000px) {
	
	.download-txt {				
		padding-left: 3rem;
		padding-right: 3rem;
	}
	.img-pic {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
	
}










