@import url("https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Azeret Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}
/* // <uniquifier>: Use a unique and descriptive class name */
/* // <weight>: Use a value from 100 to 900 */

.azeret-mono-extra-bold {
  font-weight: 800;
}

.azeret-mono-semi-bold {
  font-weight: 600;
}

:root {
  --blue: #1e90ff;
  --white: #ffffff;
  --primaryBlack: rgb(13, 19, 33);
  --bgGrey: rgba(13, 19, 33, 0.05);
}
body {
  max-width: 1440px;
  /* background-color: rgb(208, 213, 226); */
  margin: 0 auto;
}
/* nav style start */
nav > ul > li {
  list-style: none;
  display: inline-block;
}
nav > ul > li > a {
  text-decoration: none;
}
nav {
  background-color: var(--bgGrey);
  margin-bottom: 32px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 100px;
  /* border: 5px solid var(--white); */
}
.nav-title {
  font-size: 28px;
}
.nav-btn {
  color: var(--primaryBlack) !;
  border: 1px solid var(--primaryBlack);
  font-size: 20px;
  letter-spacing: 0%;
  border-radius: 8px;
  padding: 17px 24px 17px 24px;
  opacity: 0.8;
}

/* nav style end */
/* Hero Section Start */
.hero-section {
  background-image: url(./images/Hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 652px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section-container {
  height: 581px;
  width: 998px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  border: 3px solid var(--primaryBlack);
}
.hero-section-intro {
  font-size: 48px;
  text-align: center;
}

.hero-section-description {
  width: 852px;
  height: 52px;
  margin: 24px 0px;
  font-weight: 400;
  text-align: center;
  font-size: 16px;
  color: var(--primaryBlack);
}
.hero-section-btn {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}
/* Hero Section End */
