* {
	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 {
	width: 100%;
	padding: 0 5vw;
	background-color: #fff;
}

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

.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;
}

main {
	height: 100dvh;
	width: 100%;
	overflow: hidden;
}

.heading {
  margin-top: 2vw;
  font-size: 15vw;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  animation: font .5s ease 1s;
}

@keyframes font {
  0% {
    font-size: 15vw;
  } 100% {
    font-size: 6vw;
  }
}

p {
  padding: 0 5vw;
	font-size: 3vw;
	text-align: center;
}

.para {
  margin-top: 2vw;
  opacity: 0;
  animation: fadeIn .5s ease 1.5s;
}

.ctn {
  margin-top: 2vw;
  opacity: 0;
	text-align: center;
	text-transform: capitalize;
	text-decoration: underline;
	font-size: 3vw;
  animation: fadeIn .5s ease 1.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  } 100% {
    opacity: 100;
  }
}

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

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

@media (min-width: 768px) {
	.nav-link li,
	span,
	p {
		font-size: 1.4vw;
	}

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

  .heading {
    font-size: 15vw;
    animation: font .5s ease 1s;
  }
  
  @keyframes font {
    0% {
      font-size: 15vw;
    } 100% {
      font-size: 4vw;
    }
  }

}