@charset "utf-8";
/* CSS Document */

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
}

body {
	background: url("../Picture/5532862.jpg");
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	
}

/*TextHeader Section*/
.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
	font-size: 40px;
	width: 100%;
	margin-top: 1.5rem;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
/*TextHeader Section*/


/*News Section*/
.blog-con {
/*	margin-top: 3rem;*/
/*	margin-bottom: 6rem;*/
	padding-bottom: 5rem;
	background: rgba(255, 255, 255, 0.5);

}
.blog-title{
	padding: 0.5rem;
	text-align: center;
}
.blog-items{
	margin-top: 2rem;	
/*
	padding-left: 1rem;
	padding-right: 1rem;
*/
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;	
}
.blog-icon{
	padding-top: 0.5rem;
	text-align: center;	
}
.blog-icon img {
	border-radius: 20px;
}
.blog-item img:hover {
	transform: scale(1.4);
	transition: all 0.30s ease;
}
/*News Section*/


@media screen and (max-width: 1000px){
 	.blog-items {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px;
	}
	.organize-post img{
		margin-top: 1rem;
		width: 70%;
	
	}
	.announce-title img {
		width: 80%;
		align-content: center;
		align-items: center;
		justify-content: center;
	}
	
	.btn-1 {
		font-size: 1.1rem;
	}
}