
* body {

	box-sizing: border-box;
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
    align-items: center;
	height: 100vh;
	overflow: hidden;
}


.short {
	display: flex;
	transform: translate(25%, -50%);
	width: 90vw;


}


#short_input {
	width: 550px;
}

#txtHint,#errors {
	display: flex;
	font-size: 16px;
	margin-top: 10px;
	justify-content: center;
    align-items: center;
}

#reset {
	margin-left: 5px;

}

#shorten {
	margin-left: 5px;
}

@media (max-width: 920px) {
	.short {
		transform: translateX(0%);
	}



@media (max-width: 480px) {
	.short {
		width: 100vw;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transform: translateX(0%);
	}


	#short_input {
		width: 95vw;
	}

	#reset {
		margin-top: 5px;
		margin-left: 0px;
		width: 95vw;

	}

	#shorten {
		margin-top: 5px;
		margin-left: 0px;
		width: 95vw;
	}



}

