:root {
	color: white;
	text-align: center;
	font-family: Helvetica, sans-serif;
	font-size: 2vh;
	font-weight: bold;
	/* text-shadow: 1px 1px black, 1px -1px black, -1px 1px black, -1px -1px black; */
	
	min-height: 100%;
}

body {
	background: black;
}

.background {
	width: min(1000px, 100%);
	height: 100%;
	margin: auto;
	
	background: black url("backgroundwebsite.png") no-repeat center;
	background-size: auto 100%;
	
  	-webkit-animation: dim 1s ease-in-out infinite alternate;
  	-moz-animation: dim 1s ease-in-out infinite alternate;
  	animation: dim 1s ease-in-out infinite alternate;
}

@-webkit-keyframes dim {
  from {
    opacity: 80%
  }
  to {
    opacity: 100%;
  }
}

/* =========== */

center {
	width: 100%;
	position: fixed;
	top: 40%;
	right: 0;
}

.bottom {
	height: 20%;
	width: 100%;
	position: fixed;
	bottom: 0;
	right: 0;
	background: black;
}

a {
	color: inherit;
}

.glow {
	font-size: 3vh;
  	text-align: center;
  	-webkit-animation: glow 1s ease-in-out infinite alternate;
  	-moz-animation: glow 1s ease-in-out infinite alternate;
  	animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}