* {
  padding: 0;
  margin: 0;
}
.main {
  height: 100vh;
  width: 100vw;
  background-color: azure;
}

.nav {
  padding-top: 40px;
  height: 50px;
  /* width:; */
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  padding: 0px 50px;
  padding-top: 20px;
}
.nav_links {
  width: 40%;
  height: 50px;
  /* background-color: aquamarine; */
  display: flex;
  /* justify-content: space-b; */
  align-items: center;
}
.nav_links ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  /* background-color: beige; */
  width: 100%;
  font-size: 20px;
}
.nav_links ul a {
  color: white;
  text-decoration: none;
}

.logo {
  height: 50px;
  width: 100px;
  /* background-color: brown; */
}
.logo image {
  /* background-color: beige; */
  width: 100%;
  object-fit: cover;
}

.btn {
  height: 40px;
  width: 120px;
  background-color: white;
  color: black;
  border-radius: 5px;
  border: none;
  font-weight: bold;
  margin-top: 3px;
  font-size: 14px;
  cursor: pointer;
}

.content {
  padding-top: 50px;
  height: 80vh;
  /* background-color: aquamarine; */
  color: white;
  background-color: black;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
}
.para1 {
  color: rgb(20, 118, 20);
  font-size: 20px;
  word-spacing: 3px;
}
.content h1 {
  font-size: 80px;
}
.content h1 span {
  color: rgb(93, 93, 93);
}
.para2 {
  color: rgb(93, 93, 93);
  font-size: 23px;
  word-spacing: 3px;
}
.btn1 {
  background-color: rgb(23, 84, 23);
}
