html {
  height: 100%;
}

body {
	min-height: 100%;
	background-image: url(comment-solid.svg);
	background-repeat:no-repeat;
	background-position-x: center;
	background-position-y: 40px;
	background-size: 100vh;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.nasty {
	background-color: #ff0000;
}

.center-screen {
  display: flex;
  color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  margin-top: -5vh;
}

.selected {
	color: #00ff00;
}

.nasty .selected {
	color: #ff0000;
}

.row {
	z-index: 10;
}

.iconStyle {
	width: 150px;
	font-size: 6em;
	display: inline-block;
}

.iconStyle i {
	cursor: pointer;		
}

.btn-lg {
	font-size: 2rem;
}

@media only screen and (max-width: 2000px) {
	.iconStyle {
		width: 120px;
		font-size: 5em;
	}
}

@media only screen and (max-width: 1500px) {
	.iconStyle {
       width: 48vw;
       font-size: 20vw;
	}

	.selected {
		color: #ff33cc;
	}
	
	.nasty .selected {
		color: black;
	}
	
	body {
		background-image: none;
	}
	
	.center-screen {
	  color: black;
	}
	
	.nasty .center-screen {
	  color: white;
	}
	
	.btn-light {
		color: #f8f9fa;
		background-color: #212529;
		border-color: #212529;
	}
}