* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  html {
	font-size: 62.5%; /* Set base font size to 10px for easier calculations */
	background-color: rgb(16, 16, 16);
	font-family: 'Lexend', sans-serif;
	overflow-x: hidden; /* Prevent horizontal scrolling */
  }
  
  body {
	font-size: 1.4rem;
	overflow-x: hidden;
	color: #fff;
  }
  
  /* Links style */
  a {
	text-decoration: none;
	color: inherit;
  }
  
  /* Main content padding */
  main {
	padding: 6rem 6%;
	align-items: center;
	justify-content: space-between;
	font-size: 4rem;
  }
  
  @media screen and (max-width: 700px) {
	main {
	  font-size: 3rem;
	  text-align: center;
	}
  }
  
  .primary-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
	width: 100%;
	background-color: rgb(16, 16, 16);
	transition: 0.5s;
	box-shadow: 0 3px 1rem rgba(0, 0, 0, 0.65);
  }
  
  .container {
	margin-inline: auto;
	padding: 5rem 6%;
  }
  
  .navbar {
	height: 8.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  @media screen and (max-width: 600px) {
	.navbar {
	  height: 5.5rem;
	}
  }
  
  /* Logo styling */
  .logo {
	transition: 0.5s;
	background-image: url("images/typefacewhite.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 21rem;
	height: 7rem;
	z-index: 999;
  }

  .logo:hover {
	filter:brightness(80%);
  }









  .hero-image {
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}

	@media screen and (min-width: 700px){
	.text{
		width:75vw;
	}
	}

  .text h1 {
	font-size: clamp(3.6rem, 10.4vw, 7.4rem);
	line-height: clamp(3.6rem, 10.4vw, 7.4rem);
	margin-bottom:0.5rem;
  }
  
  .text h2 {
	font-size: clamp(2.4rem, 9.4vw, 5.4rem);
	line-height: clamp(2.4rem, 9.4vw, 5.4rem);
	margin-bottom:0.5rem;
  }

  .text p h4 {
	font-size: clamp(3vw, 6vw, 2rem);
  }



  
  

  















  footer {
	position: relative;
	width: 100%;
    background-color: rgb(30, 30, 30);
	min-height: 100px;
	padding: 20px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 3.7vw;
	color:white;
	z-index:5;
  }

  footer img{
	max-width:20vw;
}

  @media screen and (max-width: 1000px){
	footer{
	  font-size:1.7vw;
	  }

	  footer img{
		max-width:50vw;
	}
  }
  






