@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&amp;display=swap')



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


body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 16px;
	background: #ededed ;
	background-size: cover;
	color: #000;
	font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
	
}



h1 {
	font-size: 4rem;
	font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
}

h3 {
	font-size: 2.4rem;
	font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
	margin-top: 20px;
}

.intro-container {
	min-width: 100%;
	max-width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@media only screen and (max-width: 991px) {
body {
	background: #ededed;
	background-size: cover;
	}
	
	h1 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.4rem;
	}
}
