:root { font-family: 'Inter', sans-serif; }
       @supports (font-variation-settings: normal) {
:root { font-family: 'Inter var', sans-serif; }
       }
       
@font-face {
	font-family: 'Inter';
	src: url('fonts/Inter/Inter-Regular.woff2') format ('woff2'),
			url('fonts/Inter/Inter-Regular.woff') format('woff'),
			url('fonts/Inter/Inter-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

body {
	color: #454545;	
	overflow-y: scroll;
	line-height: 1.7;
	font-family: 'Roboto', sans-serif;
	font-size: 1.3em;
}

p {
	font-family: 'Roboto', sans-serif;
	font-size: 1.1em;
	color: #333333;
}

form {
	max-width: 400px;
	margin: 40px auto;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 10px;
	font-family: 'Roboto', sans-serif;
}

label {display: block;margin-top: 10px;}

input, textarea {
	width: 100%;
	padding: 8px;
	margin-top: 5px;
	box-sizing: border-box;
}

button {
		margin-top: 15px;
		padding: 10px 20px;
		background: #0078d7;
		color: white;
		border: none;
		border-radius: 5px;
		cursor: pointer;
}

button:hover {background:#005fa3;}