body, html {
  height: 100%;
}

.bg {
  /* The image used */
  background-image: ucnstrc.png;

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body {
	font-family: Arial, sans-serif;
	background-color: #000;
}

.wrapper {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

h1 {
	font-size: 48px;
	margin-top: 50px;
	color: #f2f2f2;
}

img {
	width: 500px;
	height: auto;
	margin-top: 50px;
}

p {
	font-size: 24px;
	margin-top: 50px;
	color: #f2f2f2;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
