*,*:after,*::before{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
*{
	outline:none !important;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	text-rendering:geometricPrecision;
}
@keyframes changeBG {
	0% {
		background: #000;
	}
	70%{
		background: #d04e4f;
	}
	80% {
		background: #000;
	}
	100% {
		background: #000;
	}
}
body, html{
	margin: 0;
	padding: 0;
	background: #000;
	animation-duration: 20s;
	animation-name: changeBG;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-delay: 5s;
}
#particles-js{
	/*background: #000;*/
	height: 100vh;
	overflow: hidden;
}

#content{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	padding: 10px 40px;
	@media (max-width:768px){
		font-size: 20px;
	}
}
form{
	margin-top: 75px;
	input{
		border-radius: 5px;
		padding: 5px 15px;
		border: none;
		width: 250px;
		height: 45px;
		font-size: 16px;
		font-family: "Montserrat", sans-serif;
		@media (max-width:768px){
			font-size: 18px;
			width: 90%;
			height: : 50px;
		}
	}
	button{
		background: transparent;
		border: 1px solid #fff;
		border-radius: 5px;
		font-size: 18px;
		text-transform: uppercase;
		letter-spacing: 10px;
		color: #fff;
		font-family: "Montserrat", sans-serif;
		width: 250px;
		height: 50px;
		font-weight: bold;
		cursor: pointer;
		transition: color .3s, border-color .3s linear .2s;
		@media (max-width:768px){
			width: 90%;
		}
		&:hover{
			color: #c35457;
			border-color: #d04e4f;
		}
	}
}