:root {
	--FourPx: 0.208vw;
	--FourPxTransformed: 0.7488vw;

	--TenPx: 0.521vw;
	--TenPxTransformed: 1.8756vw;
}

@media only screen and (max-width: 700px) {

	#tries {
		--FourPx: var(--FourPxTransformed);
		--TenPx: var(--TenPxTransformed);
		width: 9.3744vw !important;
		height: 9.3744vw !important;
		font-size: 6.84vw !important;

	}

	#outputUsedLetters {
		width: 70% !important;
		/*margin-left: 10% !important;*/
		margin: 3.7512vw auto !important;
		/*
		width: 70% !important;
		margin-left: 15% !important;
		*/
	}

	.hangmanPic {
		--FourPx: var(--FourPxTransformed);
		--TenPx: var(--TenPxTransformed);
		width: 50% !important;
		margin-top: 3.7512vw !important;
	}
}

* {
	box-sizing: border-box;
}

#tries {
	width: 2.604vw;
	height: 2.604vw;
	/* -> 8.25% */
	
	margin: auto;

	padding: 0;
	font-size: 1.9vw; /* -> 6.84vw */
	color: white;
	background-color: rgb(99, 124, 249);
	border: var(--FourPx) solid rgb(58, 95, 145);
	border-radius: 1000px;
	text-align: center;
	animation: none;
}

#outputUsedLetters {
	display: none;
	background-color: rgb(99, 124, 249);
	width: 50%;
	/* -> 70% */
	/*margin-left: 25%;
	/* -> 15% */
	margin: 1.042vw auto;
	/* -> 3.7512vw */
	word-wrap: break-word;
}

.hangmanPic {
	padding: 0.26vw;
	border: var(--FourPx) solid rgb(18, 28, 34);
	border-radius: var(--TenPx);
	width: 35%;
	/* ->50% */
	margin-top: 1.042vw;
	/* -> 3.7512vw */
}

.player1 {
	float: left;
	position: relative;
	top: 0.781vw;
	left: 10%;

	animation: none ease-in-out 1s;
}

.player2 {
	float: right;
	position: relative;
	top: 0.781vw;
	right: 10%;


	animation: none ease-in-out 1s;
}


/* animations */

@keyframes bigPulse {
	0% {
		transform: scale(1);

	}

	50% {
		transform: scale(1.4);

	}

	100% {
		transform: scale(1);

	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.3);

	}

	100% {
		transform: scale(1);
	}
}

@keyframes pointTwoPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);

	}

	100% {
		transform: scale(1);
	}
}

@keyframes pointOnePulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);

	}

	100% {
		transform: scale(1);
	}
}