@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	position: relative;
	margin: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	font-size: 100%;
}

body {
	color: #333;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  	font-family: 'Inter', sans-serif;}

	@media (max-width: 320px) {
    html {
    font-size: 75%;
    }
    }

	@media (max-width: 640px) {
    html {
    font-size: 87.5%;
    }
    }

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}
 p{
	margin: 0px;
 }

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	box-sizing: border-box;
	outline: none;
}

input:disabled {
	color: #ccc;
}

button {
	cursor: pointer;
	outline: none;
}

  h3 {
    color: #00192F;
    text-align: center;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
	margin-bottom: 0.75rem;
	margin-top: 0px;
  }

  h3 > span {
    display: block;
  }

