* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Josfin san';
}


.navbar {
  background-color: #ffffff;
  display: flex;
  justify-items: center;
  align-items: center;
  width: 100%;
  position:sticky;
  z-index: 999;
  top: 0;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 80px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
.navbar a {
  color:#1c1c1c;
  text-decoration: none;
}

.navbar__container .pers {
  display: flex;
  align-items: center;
  justify-content: center;
}
 h1 {
  font-size: 3rem;
  font-weight: bold;
}


.navbar__menu {
  display: flex;
  align-items: center;
  justify-content:center; /* the justify content helps to show were the menu are coming from. for the either the mobile view and tablet. */
  flex-wrap: wrap;
  text-align: center;
  list-style: none;
}

.navbar-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 80px;
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  padding: 0 1rem;
}

.navbar-links:hover {
  color: rgba(12,111,204, 1);
  transition: all 0.32s ease-in-out;

}

.btn {
  margin: 20px;
  padding: 10px 20px;
  border-style: none;
  border-radius: 20px;
  font-weight:bold;
  opacity: 0.76;
  background-color: #1c1c1c;
  color:white ;
  
}

button .btn {
  background: white;
}



@media screen and (max-width:768px) {
  .navbar__container {
    display: flex;
    height: 80px;
    width: 100%;
    max-width: 1300px;
    z-index: 1;
    
  }
  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    justify-items: center;
    width: 100%;
    position: absolute;
    top: -100%;
    height: 0svh;
    opacity: 0;
    z-index: -1;
    transition: all 0.35s ease-in-out;
  }

  .navbar__menu.active {
    top: 100%;
    opacity: 1;
    z-index: 99;
    height: 70svh;
    transition: all 0.3s ease-in-out;
    
  }

  .harmburger .bar {
    height: 5px;
    width:30px;
    background: #1c1c1c;
    margin: 5px;
    transition: all 0.2s ease;
  }

  .navbar-items {
    width: 100%;
  }


  .navbar-links {
    padding: 0 1rem;
    width: 100%;
    display: table;
    text-align: center;
  }

  .harmburger .bar {
    display: block;
    cursor: pointer;
  
  }

  .harmburger.is-active .bar:nth-child(2){
    opacity:0;
  }
  .harmburger.is-active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .harmburger.is-active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 30px 20px;
}

.mirage {
  height: 470px;
}

.part {
  
  color: #0000ff;
}
.btnn {
  display: flex;
  align-items: center;
  text-align: center;
  
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  justify-content: center;
  text-align: left;
  
  }

  .hero__content p {
    margin: 2rem 0;
    width: 100%;
  }

  .hero__content button {
  padding: 15px 30px;
  border-radius: 40px;
  background-color: yellow;
  color: #1c1c1c;
  font-weight: 600;
  border-style: none;
    
  }

  span{
    border: dashed #1c1c1c 2px;
    border-radius:50px ;
  }

  @media screen and (max-width:768px) {
    .hero {
      display: grid;
    }
    .hero h1 {
      font-size: 2.5rem;
    }

    .mirage {
      height: 410px;
    }
  }