*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;

}

body{
    background: #000000;
    color: #fff;
}

#header{
    width: 100%;
    height: 100vh;
    background-image: url(/assets/user2-6d6dcbc3162f5d383fa7d7eff0dacd7f333f898315b2271514d094ae82af1098.png);
    background-size: cover;
    background-position: center;
}

.container{
    padding: 1px 10%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #000000;
}

.logo {
  width: 270px;
  padding-left: 60px;

}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 20px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    
    position: relative;
}

nav ul li a::after {
  content: '';
  width: 0%;
  height: 6px;
  background: #5034d4;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;
}



nav ul li a:hover::after {
  width: 100%;
}

.header-text{
    font-size: 30px;
}

.header-text h1 {
  font-size: 40px;
  margin-top: -80px;
}

.header-text h1 span {
    color: #5034d4;
}

nav .fa-solid {
  display: none;
}

.icon{
  
  transition: background 0.5s, transform 0.5s;
}


.icon :hover{
    background: #000000;
    color: #00c0f9 ;
    transform: translateY(-20px);
    transition: 1s;
}


@media only screen and (max-width: 600px) {
  #header {
    background-image: url(/assets/phone-background2-94c27bdb6558757ddf1b917ca7c3272ffdbc121eab39b5142937312cae1dd1dc.png);
  }


  .header-text {
    margin-top: 100%;
    font-size: 16px;
  }

  .header-text h1 {
    font-size: 30px;
  }

  nav .fa-solid {
    display: block;
    font-size: 25px;
  }

  nav ul {
    background: #5034d4;
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 50px;
    z-index: 2;
    transition: right 0.5s;
  }

  nav ul li {
    display: block;
    margin: 25px;
  }

  nav ul .fa-solid {
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
  }
}
