:root {
	--tp-bg: #ffffff;
	--tp-text: #111111;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: var(--tp-bg);
	color: var(--tp-text);
	min-height: 100vh;
}

a {
	color: inherit;
	text-decoration: none;
}

html,
body {
	height: 100%;
}

.tp-app-shell {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	min-height: 100vh;
}

.tp-main-content {
	min-height: 100vh;
}

.tp-screen {
	min-height: 100vh;
	background: #ffffff;
}

.tp-screen__content {
	min-height: 100vh;
	width: 100%;
	padding: 0;
	margin: 0;
}

.tp-screen__content > *:first-child {
	margin-top: 0;
}

.tp-screen__content > *:last-child {
	margin-bottom: 0;
}
