* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #020814;
	overflow: hidden;
}

body {
	width: 100vw;
	height: 100vh;
	height: 100svh;
	height: 100dvh;
	min-height: 100vh;
	min-height: 100svh;
	min-height: 100dvh;
	background-image: url("Images/Close/Close.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #020814;
	overflow: hidden;
}

@media (max-width: 768px) and (orientation: portrait) {
	body {
		background-image: url("Images/Close/Close-mobile.png");
	}
}

@media (max-width: 932px) and (orientation: landscape) {
	body {
		background-image: url("Images/Close/Close-mobile-landscape.png");
	}
}

@media (min-width: 769px) and (max-width: 1366px) and (orientation: portrait) {
	body {
		background-image: url("Images/Close/Close-tablet.png");
	}
}

@media (min-width: 933px) and (max-width: 1366px) and (orientation: landscape) {
	body {
		background-image: url("Images/Close/Close-tablet-landscape.png");
	}
}