/* styles.css */
@font-face {
	font-family: 'Nagoda';
	src: url('fonts/Nagoda.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Karl';
	src: url('fonts/Karl-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/* CSS Variables */
:root {
  --primary-color: #DEF0F3;
  --secondary-color: #8897CB;
  --background-color: #323EA6;
}

html, body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

body {
	font-family: 'Nagoda', sans-serif;
	display: flex;
	height: 100vh;
	justify-content: center;
	align-items: center;
	background-color: var(--background-color);
	color: var(--primary-color);
	overflow-x: hidden;
}

.container {
	text-align: center;
	margin: auto;
	padding: 0px 150px;
	max-width: 1362px;
	box-sizing: border-box;
}

h1 {
	font-size: 70px;
	line-height: 75px;
	font-weight: normal;
	font-style: normal;
	color: var(--primary-color);
}

p {
	font-size: 35px;
	line-height: 40px;
	font-family: 'Karl', sans-serif;
	color: var(--secondary-color);
	padding: 0px 150px;
}

sup {
	vertical-align: top; 
	position: relative;
	top: 6px; 
	font-size: 35px;
	padding-bottom:10px;
	line-height:35px;
	display: inline-block;
	color: var(--secondary-color);
	border-bottom: 5px solid var(--secondary-color);
	font-family: 'Karl', sans-serif;
} 

a {
	color: white;
	text-decoration: none;
	padding-bottom: none;
	border-bottom: 5px solid var(--secondary-color);
	padding-bottom:10px;
}

.short {
	margin-bottom: 0px;
}

.croptop {
	margin-top: 0px;
}

/* Responsive Design */
@media (max-width: 1530px) {
	.container {
		text-align: left;
		padding: 0% 15%;
	}
	
	h1 {
		font-size: 50px;
		line-height: 55px;
	}
	
	sup {
		top: 0px; 
		font-size: 30px;
		padding-bottom:6px;
		line-height:30px;
		border-bottom-width: 5px;
	}
	
	p {
		font-size: 30px;
		line-height: 35px;
		padding: 0;
	}
	
	.short {
		margin-bottom: auto;
	}
}

@media (max-width: 768px) {
	body {
		display: unset;
	}
	
	.container {
		text-align: left;
		padding: 5% 5%;
		margin: 0;
		max-width:1061px;
	}
	
	h1 {
		font-size: 40px;
		line-height: 45px;
	}
	
	sup {
		font-size: 25px;
		top: 3px; 
		color: var(--secondary-color);
		line-height:21.5px;
		border-bottom-width: 3px;
	}
	
	p {
		font-size: 20px;
		line-height: 25px;
	}
	
	a {
		border-bottom-width: 3px;
		padding-bottom:5px;
	}
}