* {
	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 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);
}

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

.right-nav-links .link {
	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;
}

.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 {
  margin-top: 2vw;
	font-size: 3vw;
	text-align: center;
}

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

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 6vw;
  margin-top: 2vw;
  padding: 0 5vw 4vw;
}

.card {
  width: 100%;
  border: 1px solid #000;
  opacity: 1;
  transform: scale(1);
  animation: scale .5s ease 0s;
  cursor: pointer;
}

.img {
  width: 100%;
  aspect-ratio: 1/.5;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.img h1 {
  font-size: 5vw;
  color: #fff;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  } 100% {
    opacity: 1;
    transform: scale(1);
  }
}

h2 {
  font-size: 4vw;
  text-transform: capitalize;
  text-align: center;
}

@media (min-width: 426px) and (max-width: 1023px) {
  .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4vw;
    padding-bottom: 2vw;
  }
  
  h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10vw;
    font-size: 4vw;
    text-transform: capitalize;
    text-align: center;
  }
}

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

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

  .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4vw;
    padding-bottom: 2vw;
  }

  .img {
    height: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
  }
  
  .img h1 {
    font-size: 4vw;
    color: #fff;
  }

  h2 {
    font-size: 2vw;
  }
}
