* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	scroll-behavior: smooth;
	font-family: "Times New Roman", Times, serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.4;
	color: #000;
}

html,
body {
	height: 100%;
	width: 100%;
	background-color: #fff;
}

@font-face {
	font-family: "Armies";
	src: url("./Armies\ display\ Regular.ttf");
}

header {
	position: absolute;
	top: 0;
	width: 100%;
	padding: 0 5vw;
	background-color: #fff;
	z-index: 2;
}

.info {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #000;
}

.info p {
	margin: 0;
}

.info a {
	text-decoration: underline;
	text-transform: capitalize;
	font-weight: bold;
}

.navbar {
	padding: 1vw 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-bottom: 1px solid #000;
}

.left-nav-links,
.right-nav-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

div {
	width: 100%;
	display: flex;
	align-items: center;
}

.right-nav-links div {
	justify-content: right;
}

.nav-link li {
	font-size: 2vw;
	font-weight: bold;
	text-transform: capitalize;
}

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.logo h1 {
	font-family: "Armies";
	font-weight: 500;
	font-style: normal;
	font-size: 6vw;
	line-height: 1;
	text-transform: capitalize;
}

section {
	position: relative;
	height: 100dvh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 1;
}

img {
	position: absolute;
	mix-blend-mode: multiply;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 60%;
	object-fit: cover;
	object-position: bottom;
}

article {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 50vw;
	width: 50%;
	display: none;
	flex-direction: column;
	padding: 1vw 2vw;
	border: 1px solid #000;
	background-color: #fff;
	z-index: 5;
}

.close {
	display: flex;
	align-items: center;
	justify-content: right;
	font-size: 4vw;
	cursor: pointer;
}

.content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.h1 {
	font-size: 4vw;
	font-weight: bold;
	text-transform: capitalize;
}

p {
	margin-top: 2vw;
	font-size: 3vw;
	text-align: center;
}

span {
	font-size: 3vw;
	text-transform: capitalize;
	font-weight: bold;
}

button {
	margin-top: 5vw;
	padding: 1vw 2vw;
	font-size: 3vw;
	text-transform: capitalize;
	border: 1px solid #000;
	background-color: #fff;
	cursor: pointer;
}

.heading {
	font-size: 8vw;
	font-weight: bold;
}

@media (min-width: 769px) {
	article {
		height: 50%;
	}

	.close {
		font-size: 2vw;
	}

	img {
		position: absolute;
		mix-blend-mode: multiply;
		top: 60%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: 80%;
		object-fit: cover;
		object-position: bottom;
	}

	.nav-link li,
	button,
	span,
	p {
		font-size: 1.4vw;
	}

	button,
	article p {
		margin-top: 2vw;
	}
}
