body{
	background-color: black;
	background-image: url("cte-images/gun.gif");
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color:white;
}

.container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color:white;
	padding: 5px;
	width:1100px;
}

iframe{
	margin:5px;
}


@keyframes pulsate {
    0% {
        text-shadow: 0 0 10px rgba(31, 81, 255, 0.8);
    }
    50% {
        text-shadow: 0 0 20px rgba(31, 81, 255, 0.8);
    }
    100% {
        text-shadow: 0 0 10px rgba(31, 81, 255, 0.8);
    }
}

h1, p{
	 animation: pulsate 2s infinite;
}

html{
	cursor: url("index-images/scope.png"), auto;
}