.wrapper{
	width:100%;
	background: rgba(0, 0, 0, 0);
}

.home_container {
	text-align: center;
}

.home_container .logo img {
	margin-top: 70px;
	width: 80%;
	animation-name: logo;
	animation-duration: 8s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}
.home_container .playstation5 {
	position:absolute;
	top:0;
	right:0;
	max-width:350px;
	z-index:9999;
}

.home_container .playstation5 img {
	margin-top: 0px;
	width: 100%;
	animation-name: ps5;
	animation-duration: 4s;
	animation-iteration-count:infinite;
	animation-timing-function: ease-in-out;
}

@keyframes ps5 {
	0%   {
          transform: scale(0.8) rotate(-1deg) ;
        }
        50% {
         transform: scale(0.85) rotate(1deg);
        }
        100% {
          transform: scale(0.8) rotate(-1deg);}
}

@keyframes logo {
	0% {
		transform: scale(1.1);
	}
	50% {
		transform: scale(1.25);
	}
	100% {
		transform: scale(1.1);
	}
}
.home_container .items {
	display: flex;
	justify-content: space-around;
	flex-basis: 100px;
	padding: 18px 0 10px 0;

}

.home_container .item img {
	transition: all 0.3s ease;
}

.home_container .item img:hover {
	transform:scale(1.25);
}

.home_container .img {
	width: 100%;
}

@media(min-width: 600px) {
	.home_container .logo img {
		width: 400px;
	}
	.home_container .img {
		width: 200px;
		height: 250px;
	}
	.home_container .items {
		padding: 80px 0 20px 0;
	}
}

@media(min-width: 1000px) {
	.home_container .logo img {
		width: 500px;
	}
	.home_container .items {
		justify-content: center;
	}

	.home_container .item:not(:first-child) {
		margin-left: 90px;
	}
}

.mcserver{
	position:absolute;
	bottom:26px;
	left:0;
	font-size:11px;
}
.mcserver a{
	font-size:9px;
	color:#505050;
}