* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #fefefe;
}

ul li {
    list-style: none;
}

.header{
  width: 100%;
  height: 50px;
  display: flex;
  margin-top: 20px;
}

.logo {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}


.nav{
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav ul li{
  display: inline-block;
  margin: 10px;
  
  
}

.fontawesome{
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fontawesome ul li{
  display: inline-block;
  margin: 10px;
  font-size: xx-large;
}



body {
    background-image: url('./assets/img/image\ 149.png');
    background-size: cover;
    background-repeat: no-repeat;
   
  }
.hero{
  width: 500px;
}
  .hero h1{
    font-size: xx-large;
    font-weight: lighter;
    font-family: 'Courier New', Courier, monospace;
    margin-top: 200px;
    margin-left: 100px;
    color: #fff;
  }
  
  .hero h2{
    font-size: xx-large;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    margin-left: 100px;
    color: #fff;
  }

  
  .hero p{
    font-family: 'Courier New', Courier, monospace;
    margin-left: 100px;
    color: #fff;
  }

  .hero button{
    
    margin-left: 100px;
    color: #fff;
    border-radius: 5px;
    border: none;
   background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
    padding: 10px;
  }
.fontawesome .dropdown img{
  display: flex;
  align-items: end;
  justify-content: end;
  
}
 .dropdown img{
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-right: 10px;
  display: none;
}




  @media screen and (max-width: 1024px) {
    .nav {
      display: none;
    }
    .fontawesome{
      width: 80%;
      display: flex;
      justify-content: end;
      align-items: end;
      margin-right: 20px;
    }
    .dropdown img{
      display: block;
    }

   body{
    background-image: url('./assets/img/image\ 149.png');
    background-repeat: repeat;
   }
   
   

  }

  @media screen and (max-width: 600px) {
    .fontawesome{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 60%;
    }
  }
