@font-face {
	font-family: 'Inter';
	font-weight: normal;
	font-style: italic;
	src: url('../fonts/Inter-Italic.woff2') format('woff2'), url('../fonts/Inter-Italic.woff') format('woff');
}

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

@font-face {
	font-family: 'Inter';
	font-weight: 500;
	font-style: normal;
	src: url('../fonts/Inter-Medium.woff2') format('woff2'), url('../fonts/Inter-Medium.woff') format('woff');
}

@font-face {
	font-family: 'Inter';
	font-weight: 600;
	font-style: normal;
	src: url('../fonts/Inter-SemiBold.woff2') format('woff2'), url('../fonts/Inter-SemiBold.woff') format('woff');
}

@font-face {
	font-family: 'Inter';
	font-weight: 700;
	font-style: normal;
	src: url('../fonts/Inter-Bold.woff2') format('woff2'), url('../fonts/Inter-Bold.woff') format('woff');
}
/* Fullscreen Modal Styles */
.fullscreen-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	padding-top: 60px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.9);
	text-align: center;
}

.fullscreen-modal .close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
}

.fullscreen-modal .close:hover,
.fullscreen-modal .close:focus {
	color: #bbb;
	text-decoration: none;
}

.fullscreen-modal .modal-content {
	margin: auto;
	display: block;
	max-width: 90%;
	max-height: 80%;
}

#caption {
	margin: 10px auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
}

.nav-buttons {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}

.prev, .next {
	cursor: pointer;
	color: white;
	font-size: 30px;
	padding: 16px;
	margin-top: -22px;
	user-select: none;
}

.prev:hover, .next:hover {
	color: #bbb;
}

@media only screen and (max-width: 700px) {
	.fullscreen-modal .modal-content {
		width: 100%;
	}
}
