* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

#navbar {
  width: 100%;
  height: 60px;
  background-color: #262626;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  border-bottom: 1px solid rgba(172, 172, 172, 0.2);
}

.logo {
  font-size: 20px;
  color: #57b0e3;
  font-weight: 700;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

#navbar ul li {
  list-style: none;
}

#navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;

}

.fa-bars {
  color: #fff;
  font-size: 30px;
}

nav .fa-bars {
  display: none;
}

/* Footer Css */

footer {
  width: 100%;
  height: 60px;
  background-color: #262626;
  border-top: 1px solid rgba(172, 172, 172, 0.2);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p {

  color: #fff;
  font-size: 15px;
  font-weight: 500;

}