@charset "utf-8";
/* CSS Document */
*
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: url("../../../Picture/5532862.jpg");
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
}


.header-text {
	padding-top: 3rem;
	padding-bottom: 3rem;
	text-align: center;
}

.header-text h2 {
	font-weight: 800;
}

.news-detail {
	text-align: center;
	background-color: #FFFFFF;
	box-shadow: 10px 10px 10px 15px rgba(0, 0, 1, 0.5);
	border-radius: 30px;
	margin-bottom: 2rem;	
}

.news-detail h4 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	font-weight: 500;
}

.container .news-detail img {
	width: 80%;
	border-radius: 10px;	
}

.news-detail p {
	font-size: 1rem;
}

.news-img {
	display: grid;
	grid-template-columns: repeat(2, 1fr);	
	grid-gap: 10px;
	padding: 0rem 5rem;
}

.news-text {
	font-size: 1.2rem;
	padding: 2rem 12rem;
}

@media screen and (max-width:1000px) {
	.news-detail .news-text {
		padding-left: 3rem;
		padding-right: 3rem;
	}
	
	.container .news-img img {
	width: 100%;	
	}
	
}
















