
body::after {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	content: "";
	background: url(../imgs/backgrounds/abstract-01.png) no-repeat center;
	background-size: cover;
	z-index: -1;
}

button, .button {
	border:2px solid white;
	border-radius: 21px;
	height: 42px;
	color: white;
	padding: 6px 16px;
	font-size: 16px;
	background-color: rgba(0,0,0,0);
	transition: all 0.3s ease-in-out;
}
button:hover, .button:hover {
	cursor: pointer;
	border-color: #ff3300;
}
button.color-blue, .button.color-blue {
	background-color: #ff3300;
	border:2px solid transparent;
	color: white;
}
button.color-blue:hover, .button.color-blue:hover {
	cursor: pointer;
	background-color: transparent;
	border-color: #ff3300;
	color: #ff3300;
}