* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
}

body {
  background-color: #fafafa;
  height: 100vh;
  padding: 60px 80px;
}

/* Navbar Section */

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-container > div > img {
  padding-bottom: 30px;
}

.list {
  list-style: none;
  display: flex;
  gap: 40px;
  font-size: 18px;
  font-weight: 600;
}

li:first-child {
  color: #1f1f1f;
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  padding-bottom: 2px;
}

li:first-child::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  bottom: 0;
  left: 25%;
  border-bottom: 3px solid #1f1f1f;
}

.button-group {
  display: flex;
  gap: 15px;
  align-items: center;
}

.search-icon > svg {
  width: 26px;
}

.nav-button {
  font-family: "Poppins", sans-serif;
  color: #758283;
  border: 3px solid #1f1f1f;
  font-size: 20px;
  border-radius: 12px;
  padding: 2px 35px;
}

/* Hero Banner Section */

.hero-container {
  position: relative;
}

.square {
  position: absolute;
  top: 300px;
  left: 165px;
}

.globe {
  position: absolute;
  top: 0;
  left: 52%;
}

.star {
  position: absolute;
  top: 60px;
  right: 30px;
}

img[alt="person-hero-iamge"] {
  position: absolute;
  top: 30px;
  left: 0;
  width: 500px;
}

.globe + div::after {
  content: '';
  background: url(./assets/start.png) no-repeat 0 0;
  background-size: 100%;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 620px;
  left: 650px;
}

.hero-container-right {
  position: absolute;
  right: 0;
  top: 20vh;
  width: 60%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.hero-heading{
    font-size: 56px;
}

.hero-description {
  font-family: "Poppins", sans-serif;
  color: #758283;
  width: 70%;
  margin: 10px 0 40px 0;
}

.contact-heading {
  font-family: "Poppins", sans-serif;
  color: #758283;
}

.button-email {
  color: #758283;
  border-radius: 5px;
  padding: 2px 15px;
  margin-right: 10px;
  font-size: 16px;
}

.button-join {
    background-color: #1f1f1f;
    color: #fafafa;
    border-radius: 5px;
    padding: 2px 3px;
    font-size: 16px;
}

.contact-heading{
    margin: 50px 0 15px 0;
    font-weight: 500;
}

.icons {
    display: flex;
    gap: 20px;
}
